Wikipedia
igwiki
https://ig.wikipedia.org/wiki/Ihu_mb%E1%BB%A5
MediaWiki 1.47.0-wmf.8
first-letter
Midia
Ọpụrụiche
Ńkàtá
Ojiarụ
Ńkàtá ojiarụ
Wikipedia
Ńkàtá Wikipedia
Faịlụ
Ńkàtá faịlụ
MidiaWiki
Ńkàtá MidiaWiki
Templeeti
Ńkàtá templeeti
Enyemaka
Ńkàtá enyemaka
Otú
Ńkàtá otú
Édēchághị́
Ńkàtá Édēchághị́
TimedText
TimedText talk
Module
Module talk
Event
Event talk
Templeeti:Clear
10
1989
667250
662482
2012-04-27T02:37:31Z
67.71.69.201
237485
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
667260
662483
2026-06-29T12:40:30Z
King ChristLike
13051
1 revision imported from [[:en:Template:Clear]]
237493
wikitext
text/x-wiki
<div style="clear:{{{1|both}}};" class={{{class|}}}></div><noinclude>
{{documentation}}
</noinclude>
an9yinekx1cqo1nkoi5u8nuqub9qbvg
Module:Check for unknown parameters
828
10401
670308
526025
2026-06-28T21:41:54Z
MSGJ
14482
add list of pushpin map parameters
670308
Scribunto
text/plain
-- This module may be used to compare the arguments passed to the parent
-- with a list of arguments, returning a specified result if an argument is
-- not on the list
require ('strict');
local p = {}
local pushpin_map_params = {
'coordinates',
'pushpin_caption',
'pushpin_relief',
'pushpin_label',
'pushpin_label_position',
'pushpin_label_size',
'pushpin_mark',
'pushpin_mark_size',
'pushpin_alt',
'pushpin_background',
'pushpin_map_size'
}
local mapframe_params = {
'coord',
'coordinates',
'id',
'qid',
'mapframe',
'mapframe-area_km2',
'mapframe-area_mi2',
'mapframe-caption',
'mapframe-coord',
'mapframe-coordinates',
'mapframe-custom',
'mapframe-frame-coord',
'mapframe-frame-coordinates',
'mapframe-frame-height',
'mapframe-frame-width',
'mapframe-geomask',
'mapframe-geomask-fill',
'mapframe-geomask-fill-opacity',
'mapframe-geomask-stroke-color',
'mapframe-geomask-stroke-colour',
'mapframe-geomask-stroke-width',
'mapframe-height',
'mapframe-id',
'mapframe-length_km',
'mapframe-length_mi',
'mapframe-line',
'mapframe-line-stroke-color',
'mapframe-line-stroke-colour',
'mapframe-marker',
'mapframe-marker-color',
'mapframe-marker-colour',
'mapframe-point',
'mapframe-population',
'mapframe-shape',
'mapframe-shape-fill',
'mapframe-shape-fill-opacity',
'mapframe-shape-stroke-color',
'mapframe-shape-stroke-colour',
'mapframe-stroke-color',
'mapframe-stroke-colour',
'mapframe-stroke-width',
'mapframe-switcher',
'mapframe-type',
'mapframe-width',
'mapframe-wikidata',
'mapframe-zoom'
}
local function trim(s)
return s:match('^%s*(.-)%s*$')
end
local function isnotempty(s)
return s and s:match('%S')
end
local function clean(text)
-- Return text cleaned for display and truncated if too long.
-- Strip markers are replaced with dummy text representing the original wikitext.
local pos, truncated
local function truncate(text)
if truncated then
return ''
end
if mw.ustring.len(text) > 25 then
truncated = true
text = mw.ustring.sub(text, 1, 25) .. '...'
end
return mw.text.nowiki(text)
end
local parts = {}
for before, tag, remainder in text:gmatch('([^\127]*)\127[^\127]*%-(%l+)%-[^\127]*\127()') do
pos = remainder
table.insert(parts, truncate(before) .. '<' .. tag .. '>...</' .. tag .. '>')
end
table.insert(parts, truncate(text:sub(pos or 1)))
return table.concat(parts)
end
function p._check(args, pargs)
if type(args) ~= "table" or type(pargs) ~= "table" then
-- TODO: error handling
return
end
-- create the list of known args, regular expressions, and the return string
local knownargs = {}
if isnotempty(args['mapframe_args']) then
for _, v in ipairs(mapframe_params) do
knownargs[v] = 1
end
end
if isnotempty(args['pushpin_map_args']) then
for _, v in ipairs(pushpin_map_params) do
knownargs[v] = 1
end
end
local regexps = {}
for k, v in pairs(args) do
if type(k) == 'number' then
v = trim(v)
knownargs[v] = 1
elseif k:find('^regexp[1-9][0-9]*$') then
table.insert(regexps, '^' .. v .. '$')
end
end
-- loop over the parent args, and make sure they are on the list
local ignoreblank = isnotempty(args['ignoreblank'])
local showblankpos = isnotempty(args['showblankpositional'])
local values = {}
for k, v in pairs(pargs) do
if type(k) == 'string' and knownargs[k] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(k, regexp) then
knownflag = true
break
end
end
if not knownflag and ( not ignoreblank or isnotempty(v) ) then
table.insert(values, clean(k))
end
elseif type(k) == 'number' and knownargs[tostring(k)] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(tostring(k), regexp) then
knownflag = true
break
end
end
if not knownflag and ( showblankpos or isnotempty(v) ) then
table.insert(values, k .. ' = ' .. clean(v))
end
end
end
-- add results to the output tables
local res = {}
if #values > 0 then
local unknown_text = args['unknown'] or 'Found _VALUE_, '
if mw.getCurrentFrame():preprocess( "{{REVISIONID}}" ) == "" then
local preview_text = args['preview']
if isnotempty(preview_text) then
preview_text = require('Module:If preview')._warning({preview_text})
elseif preview_text == nil then
preview_text = unknown_text
end
unknown_text = preview_text
end
for _, v in pairs(values) do
-- Fix odd bug for | = which gets stripped to the empty string and
-- breaks category links
if v == '' then v = ' ' end
-- avoid error with v = 'example%2' ("invalid capture index")
local r = unknown_text:gsub('_VALUE_', {_VALUE_ = v})
table.insert(res, r)
end
end
return table.concat(res)
end
function p.check(frame)
local args = frame.args
local pargs = frame:getParent().args
return p._check(args, pargs)
end
return p
civhrks6bzupi1qw5hmyrd22dludbl6
670309
670308
2026-06-28T22:16:03Z
MSGJ
14482
+pushpin_map
670309
Scribunto
text/plain
-- This module may be used to compare the arguments passed to the parent
-- with a list of arguments, returning a specified result if an argument is
-- not on the list
require ('strict');
local p = {}
local pushpin_map_params = {
'coordinates',
'pushpin_caption',
'pushpin_relief',
'pushpin_label',
'pushpin_label_position',
'pushpin_label_size',
'pushpin_map',
'pushpin_mark',
'pushpin_mark_size',
'pushpin_alt',
'pushpin_background',
'pushpin_map_size'
}
local mapframe_params = {
'coord',
'coordinates',
'id',
'qid',
'mapframe',
'mapframe-area_km2',
'mapframe-area_mi2',
'mapframe-caption',
'mapframe-coord',
'mapframe-coordinates',
'mapframe-custom',
'mapframe-frame-coord',
'mapframe-frame-coordinates',
'mapframe-frame-height',
'mapframe-frame-width',
'mapframe-geomask',
'mapframe-geomask-fill',
'mapframe-geomask-fill-opacity',
'mapframe-geomask-stroke-color',
'mapframe-geomask-stroke-colour',
'mapframe-geomask-stroke-width',
'mapframe-height',
'mapframe-id',
'mapframe-length_km',
'mapframe-length_mi',
'mapframe-line',
'mapframe-line-stroke-color',
'mapframe-line-stroke-colour',
'mapframe-marker',
'mapframe-marker-color',
'mapframe-marker-colour',
'mapframe-point',
'mapframe-population',
'mapframe-shape',
'mapframe-shape-fill',
'mapframe-shape-fill-opacity',
'mapframe-shape-stroke-color',
'mapframe-shape-stroke-colour',
'mapframe-stroke-color',
'mapframe-stroke-colour',
'mapframe-stroke-width',
'mapframe-switcher',
'mapframe-type',
'mapframe-width',
'mapframe-wikidata',
'mapframe-zoom'
}
local function trim(s)
return s:match('^%s*(.-)%s*$')
end
local function isnotempty(s)
return s and s:match('%S')
end
local function clean(text)
-- Return text cleaned for display and truncated if too long.
-- Strip markers are replaced with dummy text representing the original wikitext.
local pos, truncated
local function truncate(text)
if truncated then
return ''
end
if mw.ustring.len(text) > 25 then
truncated = true
text = mw.ustring.sub(text, 1, 25) .. '...'
end
return mw.text.nowiki(text)
end
local parts = {}
for before, tag, remainder in text:gmatch('([^\127]*)\127[^\127]*%-(%l+)%-[^\127]*\127()') do
pos = remainder
table.insert(parts, truncate(before) .. '<' .. tag .. '>...</' .. tag .. '>')
end
table.insert(parts, truncate(text:sub(pos or 1)))
return table.concat(parts)
end
function p._check(args, pargs)
if type(args) ~= "table" or type(pargs) ~= "table" then
-- TODO: error handling
return
end
-- create the list of known args, regular expressions, and the return string
local knownargs = {}
if isnotempty(args['mapframe_args']) then
for _, v in ipairs(mapframe_params) do
knownargs[v] = 1
end
end
if isnotempty(args['pushpin_map_args']) then
for _, v in ipairs(pushpin_map_params) do
knownargs[v] = 1
end
end
local regexps = {}
for k, v in pairs(args) do
if type(k) == 'number' then
v = trim(v)
knownargs[v] = 1
elseif k:find('^regexp[1-9][0-9]*$') then
table.insert(regexps, '^' .. v .. '$')
end
end
-- loop over the parent args, and make sure they are on the list
local ignoreblank = isnotempty(args['ignoreblank'])
local showblankpos = isnotempty(args['showblankpositional'])
local values = {}
for k, v in pairs(pargs) do
if type(k) == 'string' and knownargs[k] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(k, regexp) then
knownflag = true
break
end
end
if not knownflag and ( not ignoreblank or isnotempty(v) ) then
table.insert(values, clean(k))
end
elseif type(k) == 'number' and knownargs[tostring(k)] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(tostring(k), regexp) then
knownflag = true
break
end
end
if not knownflag and ( showblankpos or isnotempty(v) ) then
table.insert(values, k .. ' = ' .. clean(v))
end
end
end
-- add results to the output tables
local res = {}
if #values > 0 then
local unknown_text = args['unknown'] or 'Found _VALUE_, '
if mw.getCurrentFrame():preprocess( "{{REVISIONID}}" ) == "" then
local preview_text = args['preview']
if isnotempty(preview_text) then
preview_text = require('Module:If preview')._warning({preview_text})
elseif preview_text == nil then
preview_text = unknown_text
end
unknown_text = preview_text
end
for _, v in pairs(values) do
-- Fix odd bug for | = which gets stripped to the empty string and
-- breaks category links
if v == '' then v = ' ' end
-- avoid error with v = 'example%2' ("invalid capture index")
local r = unknown_text:gsub('_VALUE_', {_VALUE_ = v})
table.insert(res, r)
end
end
return table.concat(res)
end
function p.check(frame)
local args = frame.args
local pargs = frame:getParent().args
return p._check(args, pargs)
end
return p
kohqf9fxewyce9gq1kljbz0180u8sl1
670310
670309
2026-06-29T12:44:08Z
King ChristLike
13051
2 revisions imported from [[:en:Module:Check_for_unknown_parameters]]
670309
Scribunto
text/plain
-- This module may be used to compare the arguments passed to the parent
-- with a list of arguments, returning a specified result if an argument is
-- not on the list
require ('strict');
local p = {}
local pushpin_map_params = {
'coordinates',
'pushpin_caption',
'pushpin_relief',
'pushpin_label',
'pushpin_label_position',
'pushpin_label_size',
'pushpin_map',
'pushpin_mark',
'pushpin_mark_size',
'pushpin_alt',
'pushpin_background',
'pushpin_map_size'
}
local mapframe_params = {
'coord',
'coordinates',
'id',
'qid',
'mapframe',
'mapframe-area_km2',
'mapframe-area_mi2',
'mapframe-caption',
'mapframe-coord',
'mapframe-coordinates',
'mapframe-custom',
'mapframe-frame-coord',
'mapframe-frame-coordinates',
'mapframe-frame-height',
'mapframe-frame-width',
'mapframe-geomask',
'mapframe-geomask-fill',
'mapframe-geomask-fill-opacity',
'mapframe-geomask-stroke-color',
'mapframe-geomask-stroke-colour',
'mapframe-geomask-stroke-width',
'mapframe-height',
'mapframe-id',
'mapframe-length_km',
'mapframe-length_mi',
'mapframe-line',
'mapframe-line-stroke-color',
'mapframe-line-stroke-colour',
'mapframe-marker',
'mapframe-marker-color',
'mapframe-marker-colour',
'mapframe-point',
'mapframe-population',
'mapframe-shape',
'mapframe-shape-fill',
'mapframe-shape-fill-opacity',
'mapframe-shape-stroke-color',
'mapframe-shape-stroke-colour',
'mapframe-stroke-color',
'mapframe-stroke-colour',
'mapframe-stroke-width',
'mapframe-switcher',
'mapframe-type',
'mapframe-width',
'mapframe-wikidata',
'mapframe-zoom'
}
local function trim(s)
return s:match('^%s*(.-)%s*$')
end
local function isnotempty(s)
return s and s:match('%S')
end
local function clean(text)
-- Return text cleaned for display and truncated if too long.
-- Strip markers are replaced with dummy text representing the original wikitext.
local pos, truncated
local function truncate(text)
if truncated then
return ''
end
if mw.ustring.len(text) > 25 then
truncated = true
text = mw.ustring.sub(text, 1, 25) .. '...'
end
return mw.text.nowiki(text)
end
local parts = {}
for before, tag, remainder in text:gmatch('([^\127]*)\127[^\127]*%-(%l+)%-[^\127]*\127()') do
pos = remainder
table.insert(parts, truncate(before) .. '<' .. tag .. '>...</' .. tag .. '>')
end
table.insert(parts, truncate(text:sub(pos or 1)))
return table.concat(parts)
end
function p._check(args, pargs)
if type(args) ~= "table" or type(pargs) ~= "table" then
-- TODO: error handling
return
end
-- create the list of known args, regular expressions, and the return string
local knownargs = {}
if isnotempty(args['mapframe_args']) then
for _, v in ipairs(mapframe_params) do
knownargs[v] = 1
end
end
if isnotempty(args['pushpin_map_args']) then
for _, v in ipairs(pushpin_map_params) do
knownargs[v] = 1
end
end
local regexps = {}
for k, v in pairs(args) do
if type(k) == 'number' then
v = trim(v)
knownargs[v] = 1
elseif k:find('^regexp[1-9][0-9]*$') then
table.insert(regexps, '^' .. v .. '$')
end
end
-- loop over the parent args, and make sure they are on the list
local ignoreblank = isnotempty(args['ignoreblank'])
local showblankpos = isnotempty(args['showblankpositional'])
local values = {}
for k, v in pairs(pargs) do
if type(k) == 'string' and knownargs[k] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(k, regexp) then
knownflag = true
break
end
end
if not knownflag and ( not ignoreblank or isnotempty(v) ) then
table.insert(values, clean(k))
end
elseif type(k) == 'number' and knownargs[tostring(k)] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(tostring(k), regexp) then
knownflag = true
break
end
end
if not knownflag and ( showblankpos or isnotempty(v) ) then
table.insert(values, k .. ' = ' .. clean(v))
end
end
end
-- add results to the output tables
local res = {}
if #values > 0 then
local unknown_text = args['unknown'] or 'Found _VALUE_, '
if mw.getCurrentFrame():preprocess( "{{REVISIONID}}" ) == "" then
local preview_text = args['preview']
if isnotempty(preview_text) then
preview_text = require('Module:If preview')._warning({preview_text})
elseif preview_text == nil then
preview_text = unknown_text
end
unknown_text = preview_text
end
for _, v in pairs(values) do
-- Fix odd bug for | = which gets stripped to the empty string and
-- breaks category links
if v == '' then v = ' ' end
-- avoid error with v = 'example%2' ("invalid capture index")
local r = unknown_text:gsub('_VALUE_', {_VALUE_ = v})
table.insert(res, r)
end
end
return table.concat(res)
end
function p.check(frame)
local args = frame.args
local pargs = frame:getParent().args
return p._check(args, pargs)
end
return p
kohqf9fxewyce9gq1kljbz0180u8sl1
670402
526025
2026-06-28T21:41:54Z
MSGJ
14482
add list of pushpin map parameters
670402
Scribunto
text/plain
-- This module may be used to compare the arguments passed to the parent
-- with a list of arguments, returning a specified result if an argument is
-- not on the list
require ('strict');
local p = {}
local pushpin_map_params = {
'coordinates',
'pushpin_caption',
'pushpin_relief',
'pushpin_label',
'pushpin_label_position',
'pushpin_label_size',
'pushpin_mark',
'pushpin_mark_size',
'pushpin_alt',
'pushpin_background',
'pushpin_map_size'
}
local mapframe_params = {
'coord',
'coordinates',
'id',
'qid',
'mapframe',
'mapframe-area_km2',
'mapframe-area_mi2',
'mapframe-caption',
'mapframe-coord',
'mapframe-coordinates',
'mapframe-custom',
'mapframe-frame-coord',
'mapframe-frame-coordinates',
'mapframe-frame-height',
'mapframe-frame-width',
'mapframe-geomask',
'mapframe-geomask-fill',
'mapframe-geomask-fill-opacity',
'mapframe-geomask-stroke-color',
'mapframe-geomask-stroke-colour',
'mapframe-geomask-stroke-width',
'mapframe-height',
'mapframe-id',
'mapframe-length_km',
'mapframe-length_mi',
'mapframe-line',
'mapframe-line-stroke-color',
'mapframe-line-stroke-colour',
'mapframe-marker',
'mapframe-marker-color',
'mapframe-marker-colour',
'mapframe-point',
'mapframe-population',
'mapframe-shape',
'mapframe-shape-fill',
'mapframe-shape-fill-opacity',
'mapframe-shape-stroke-color',
'mapframe-shape-stroke-colour',
'mapframe-stroke-color',
'mapframe-stroke-colour',
'mapframe-stroke-width',
'mapframe-switcher',
'mapframe-type',
'mapframe-width',
'mapframe-wikidata',
'mapframe-zoom'
}
local function trim(s)
return s:match('^%s*(.-)%s*$')
end
local function isnotempty(s)
return s and s:match('%S')
end
local function clean(text)
-- Return text cleaned for display and truncated if too long.
-- Strip markers are replaced with dummy text representing the original wikitext.
local pos, truncated
local function truncate(text)
if truncated then
return ''
end
if mw.ustring.len(text) > 25 then
truncated = true
text = mw.ustring.sub(text, 1, 25) .. '...'
end
return mw.text.nowiki(text)
end
local parts = {}
for before, tag, remainder in text:gmatch('([^\127]*)\127[^\127]*%-(%l+)%-[^\127]*\127()') do
pos = remainder
table.insert(parts, truncate(before) .. '<' .. tag .. '>...</' .. tag .. '>')
end
table.insert(parts, truncate(text:sub(pos or 1)))
return table.concat(parts)
end
function p._check(args, pargs)
if type(args) ~= "table" or type(pargs) ~= "table" then
-- TODO: error handling
return
end
-- create the list of known args, regular expressions, and the return string
local knownargs = {}
if isnotempty(args['mapframe_args']) then
for _, v in ipairs(mapframe_params) do
knownargs[v] = 1
end
end
if isnotempty(args['pushpin_map_args']) then
for _, v in ipairs(pushpin_map_params) do
knownargs[v] = 1
end
end
local regexps = {}
for k, v in pairs(args) do
if type(k) == 'number' then
v = trim(v)
knownargs[v] = 1
elseif k:find('^regexp[1-9][0-9]*$') then
table.insert(regexps, '^' .. v .. '$')
end
end
-- loop over the parent args, and make sure they are on the list
local ignoreblank = isnotempty(args['ignoreblank'])
local showblankpos = isnotempty(args['showblankpositional'])
local values = {}
for k, v in pairs(pargs) do
if type(k) == 'string' and knownargs[k] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(k, regexp) then
knownflag = true
break
end
end
if not knownflag and ( not ignoreblank or isnotempty(v) ) then
table.insert(values, clean(k))
end
elseif type(k) == 'number' and knownargs[tostring(k)] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(tostring(k), regexp) then
knownflag = true
break
end
end
if not knownflag and ( showblankpos or isnotempty(v) ) then
table.insert(values, k .. ' = ' .. clean(v))
end
end
end
-- add results to the output tables
local res = {}
if #values > 0 then
local unknown_text = args['unknown'] or 'Found _VALUE_, '
if mw.getCurrentFrame():preprocess( "{{REVISIONID}}" ) == "" then
local preview_text = args['preview']
if isnotempty(preview_text) then
preview_text = require('Module:If preview')._warning({preview_text})
elseif preview_text == nil then
preview_text = unknown_text
end
unknown_text = preview_text
end
for _, v in pairs(values) do
-- Fix odd bug for | = which gets stripped to the empty string and
-- breaks category links
if v == '' then v = ' ' end
-- avoid error with v = 'example%2' ("invalid capture index")
local r = unknown_text:gsub('_VALUE_', {_VALUE_ = v})
table.insert(res, r)
end
end
return table.concat(res)
end
function p.check(frame)
local args = frame.args
local pargs = frame:getParent().args
return p._check(args, pargs)
end
return p
civhrks6bzupi1qw5hmyrd22dludbl6
670403
670402
2026-06-28T22:16:03Z
MSGJ
14482
+pushpin_map
670403
Scribunto
text/plain
-- This module may be used to compare the arguments passed to the parent
-- with a list of arguments, returning a specified result if an argument is
-- not on the list
require ('strict');
local p = {}
local pushpin_map_params = {
'coordinates',
'pushpin_caption',
'pushpin_relief',
'pushpin_label',
'pushpin_label_position',
'pushpin_label_size',
'pushpin_map',
'pushpin_mark',
'pushpin_mark_size',
'pushpin_alt',
'pushpin_background',
'pushpin_map_size'
}
local mapframe_params = {
'coord',
'coordinates',
'id',
'qid',
'mapframe',
'mapframe-area_km2',
'mapframe-area_mi2',
'mapframe-caption',
'mapframe-coord',
'mapframe-coordinates',
'mapframe-custom',
'mapframe-frame-coord',
'mapframe-frame-coordinates',
'mapframe-frame-height',
'mapframe-frame-width',
'mapframe-geomask',
'mapframe-geomask-fill',
'mapframe-geomask-fill-opacity',
'mapframe-geomask-stroke-color',
'mapframe-geomask-stroke-colour',
'mapframe-geomask-stroke-width',
'mapframe-height',
'mapframe-id',
'mapframe-length_km',
'mapframe-length_mi',
'mapframe-line',
'mapframe-line-stroke-color',
'mapframe-line-stroke-colour',
'mapframe-marker',
'mapframe-marker-color',
'mapframe-marker-colour',
'mapframe-point',
'mapframe-population',
'mapframe-shape',
'mapframe-shape-fill',
'mapframe-shape-fill-opacity',
'mapframe-shape-stroke-color',
'mapframe-shape-stroke-colour',
'mapframe-stroke-color',
'mapframe-stroke-colour',
'mapframe-stroke-width',
'mapframe-switcher',
'mapframe-type',
'mapframe-width',
'mapframe-wikidata',
'mapframe-zoom'
}
local function trim(s)
return s:match('^%s*(.-)%s*$')
end
local function isnotempty(s)
return s and s:match('%S')
end
local function clean(text)
-- Return text cleaned for display and truncated if too long.
-- Strip markers are replaced with dummy text representing the original wikitext.
local pos, truncated
local function truncate(text)
if truncated then
return ''
end
if mw.ustring.len(text) > 25 then
truncated = true
text = mw.ustring.sub(text, 1, 25) .. '...'
end
return mw.text.nowiki(text)
end
local parts = {}
for before, tag, remainder in text:gmatch('([^\127]*)\127[^\127]*%-(%l+)%-[^\127]*\127()') do
pos = remainder
table.insert(parts, truncate(before) .. '<' .. tag .. '>...</' .. tag .. '>')
end
table.insert(parts, truncate(text:sub(pos or 1)))
return table.concat(parts)
end
function p._check(args, pargs)
if type(args) ~= "table" or type(pargs) ~= "table" then
-- TODO: error handling
return
end
-- create the list of known args, regular expressions, and the return string
local knownargs = {}
if isnotempty(args['mapframe_args']) then
for _, v in ipairs(mapframe_params) do
knownargs[v] = 1
end
end
if isnotempty(args['pushpin_map_args']) then
for _, v in ipairs(pushpin_map_params) do
knownargs[v] = 1
end
end
local regexps = {}
for k, v in pairs(args) do
if type(k) == 'number' then
v = trim(v)
knownargs[v] = 1
elseif k:find('^regexp[1-9][0-9]*$') then
table.insert(regexps, '^' .. v .. '$')
end
end
-- loop over the parent args, and make sure they are on the list
local ignoreblank = isnotempty(args['ignoreblank'])
local showblankpos = isnotempty(args['showblankpositional'])
local values = {}
for k, v in pairs(pargs) do
if type(k) == 'string' and knownargs[k] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(k, regexp) then
knownflag = true
break
end
end
if not knownflag and ( not ignoreblank or isnotempty(v) ) then
table.insert(values, clean(k))
end
elseif type(k) == 'number' and knownargs[tostring(k)] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(tostring(k), regexp) then
knownflag = true
break
end
end
if not knownflag and ( showblankpos or isnotempty(v) ) then
table.insert(values, k .. ' = ' .. clean(v))
end
end
end
-- add results to the output tables
local res = {}
if #values > 0 then
local unknown_text = args['unknown'] or 'Found _VALUE_, '
if mw.getCurrentFrame():preprocess( "{{REVISIONID}}" ) == "" then
local preview_text = args['preview']
if isnotempty(preview_text) then
preview_text = require('Module:If preview')._warning({preview_text})
elseif preview_text == nil then
preview_text = unknown_text
end
unknown_text = preview_text
end
for _, v in pairs(values) do
-- Fix odd bug for | = which gets stripped to the empty string and
-- breaks category links
if v == '' then v = ' ' end
-- avoid error with v = 'example%2' ("invalid capture index")
local r = unknown_text:gsub('_VALUE_', {_VALUE_ = v})
table.insert(res, r)
end
end
return table.concat(res)
end
function p.check(frame)
local args = frame.args
local pargs = frame:getParent().args
return p._check(args, pargs)
end
return p
kohqf9fxewyce9gq1kljbz0180u8sl1
Module:Transclusion count/data/F
828
23914
670313
641592
2026-05-31T05:13:02Z
Ahechtbot
14654
[[Wikipedia:BOT|Bot]]: Updated page.
670313
Scribunto
text/plain
return {
["F1"] = 5300,
["FA-Class"] = 16000,
["FAA-airport"] = 3800,
["FACClosed"] = 6400,
["FAC_link"] = 117000,
["FAR_link"] = 117000,
["FCC-LMS-Facility"] = 5800,
["FCC_Licensing_and_Management_System_facility"] = 16000,
["FCCdata"] = 2600,
["FFU"] = 2000,
["FIDE"] = 2500,
["FIFA_player"] = 10000,
["FIG_country_code"] = 2600,
["FIN"] = 9900,
["FIPS"] = 2400,
["FJC_Bio"] = 4000,
["FL-Class"] = 13000,
["FLCClosed"] = 3600,
["FLC_link"] = 117000,
["FM-Class"] = 4300,
["FMA"] = 3400,
["FMARB"] = 8900,
["FM_station_data"] = 8500,
["FPCnom/VotingEnds"] = 12000,
["FPCresult"] = 18000,
["FRA"] = 21000,
["FRG"] = 3800,
["FTE"] = 3100,
["FULLBASEPAGENAME"] = 354000,
["FULLROOTPAGENAME"] = 3760000,
["FXL"] = 2200,
["FYI"] = 2100,
["Fa_bottom"] = 3400,
["Fa_top"] = 3400,
["Facebook"] = 14000,
["Facepalm"] = 2800,
["Facl"] = 117000,
["Fact"] = 39000,
["FadedPage"] = 2700,
["FailedGA"] = 3800,
["Failed_verification"] = 18000,
["Fake_heading"] = 2200,
["Fake_heading/styles.css"] = 2200,
["Fake_link/styles.css"] = 2000,
["Family_name_explanation"] = 97000,
["Family_name_explanation/core"] = 97000,
["Family_name_footnote"] = 2200,
["Family_name_hatnote"] = 95000,
["Farl"] = 117000,
["Fb"] = 31000,
["Fb-rt"] = 6300,
["Fb_cs_footer"] = 3200,
["Fb_gd"] = 11000,
["Fb_overview"] = 6000,
["Fb_overview2"] = 5300,
["Fb_rs"] = 11000,
["Fb_rs_footer"] = 11000,
["Fba/core"] = 9000,
["Fba/list"] = 11000,
["Fbaicon"] = 11000,
["Fbaicon/core"] = 11000,
["Fbicon"] = 3600,
["Fbu"] = 4000,
["Fbu-rt"] = 2600,
["Fbw"] = 6000,
["Fdacite"] = 14000,
["Fdate"] = 2900,
["FeaturedPicture"] = 7300,
["Featured_article"] = 7300,
["Featured_article_tools"] = 12000,
["Featured_list"] = 4900,
["Featured_picture"] = 8700,
["Featured_topic_box"] = 3700,
["Featured_topic_box/styles.css"] = 3700,
["Feedback_link"] = 4600,
["Fiction-based_redirects_to_list_entries_category_handler"] = 3200,
["Fictional_character_redirect"] = 3900,
["File-Class"] = 13000,
["File_other"] = 994000,
["Filipino_name"] = 4400,
["Film_date"] = 166000,
["Filter_category_by_topic"] = 2800,
["Find"] = 8500,
["FindYDCportal"] = 222000,
["Find_a_Grave"] = 24000,
["Find_country"] = 41000,
["Find_demonym"] = 38000,
["Find_general_sources"] = 916000,
["Find_medical_sources"] = 8200,
["Find_page_text"] = 2790000,
["Find_sources"] = 623000,
["Find_sources/proj/is_biography"] = 609000,
["Find_sources/proj/is_med"] = 623000,
["Find_sources/proj/is_video"] = 615000,
["Find_sources/top_proj"] = 623000,
["Find_sources_AFD"] = 259000,
["Find_sources_mainspace"] = 715000,
["Find_video_game_sources"] = 6900,
["Find_video_game_sources_short"] = 3100,
["Findsources"] = 42000,
["First_word"] = 677000,
["FishBase"] = 20000,
["FishBase_genus"] = 4200,
["Fix"] = 1050000,
["Fix-span"] = 64000,
["Fix/category"] = 1020000,
["Fix_comma_category"] = 597000,
["Fixed"] = 10000,
["Fl."] = 3700,
["Flag"] = 347000,
["Flag/core"] = 347000,
["FlagCGFathlete"] = 2200,
["FlagIOC"] = 10000,
["FlagIOC2"] = 4700,
["FlagIOC2athlete"] = 6700,
["FlagIOC2team"] = 2900,
["FlagIOCathlete"] = 11000,
["FlagIPC"] = 3300,
["FlagPASO"] = 2100,
["FlagPASOathlete"] = 3300,
["Flag_CGF_athlete"] = 2400,
["Flag_IOC"] = 13000,
["Flag_IOC_2"] = 18000,
["Flag_IOC_2_athlete"] = 15000,
["Flag_IOC_2_medalist"] = 5100,
["Flag_IOC_2_team"] = 4400,
["Flag_IOC_athlete"] = 13000,
["Flag_IPC"] = 4000,
["Flag_PASO"] = 3000,
["Flag_PASO_athlete"] = 3500,
["Flag_athlete"] = 39000,
["Flag_country"] = 41000,
["Flag_country/core"] = 41000,
["Flag_data"] = 12000,
["Flag_decoration"] = 94000,
["Flag_decoration/core"] = 94000,
["Flag_icon"] = 615000,
["Flag_icon/core"] = 615000,
["Flag_icon/nt"] = 9600,
["Flag_link"] = 2100,
["Flag_link/core"] = 87000,
["Flag_medalist"] = 2900,
["Flag_medalist/core"] = 2900,
["Flag_team"] = 2900,
["Flagathlete"] = 31000,
["Flagbig"] = 5100,
["Flagbig/core"] = 8900,
["Flagcountry"] = 26000,
["Flagdeco"] = 60000,
["Flagg"] = 23000,
["Flagicon"] = 460000,
["Flagicon_image"] = 52000,
["Flagmedalist"] = 2800,
["Flagright/core"] = 26000,
["Flagteam"] = 2500,
["Flagu"] = 31000,
["Flagu/core"] = 31000,
["Flat_list"] = 7800,
["Flatlist"] = 2630000,
["Flcl"] = 117000,
["FloraBase"] = 6100,
["Floruit"] = 7600,
["Fmbox"] = 24000,
["FoP-USonly"] = 5100,
["Font"] = 12000,
["Font_color"] = 52000,
["Fontcolor"] = 6900,
["Fooian_companies_established_in_the_year"] = 5500,
["Fooian_expatriate_sportspeople_in_Bar_cat"] = 11000,
["Fooian_expatriate_sportspeople_in_Bar_cat/core"] = 11000,
["Fooian_expatriate_sportspeople_in_Bar_cat/sortname"] = 11000,
["Fooian_fooers"] = 14000,
["FootballFacts.ru"] = 6000,
["Football_box"] = 29000,
["Football_box_collapsible"] = 30000,
["Football_box_collapsible/styles.css"] = 30000,
["Football_kit"] = 54000,
["Football_manager_history"] = 23000,
["Football_squad"] = 46000,
["Football_squad2_player"] = 49000,
["Football_squad_end"] = 21000,
["Football_squad_manager"] = 47000,
["Football_squad_mid"] = 19000,
["Football_squad_player"] = 22000,
["Football_squad_player/role"] = 8100,
["Football_squad_player/styles.css"] = 22000,
["Football_squad_start"] = 22000,
["Footballbox"] = 5800,
["Footballbox_collapsible"] = 8900,
["Footballstats"] = 4100,
["Foo–Bar_relations_category"] = 6500,
["Foo–Bar_relations_category/core"] = 6500,
["Foo–Bar_relations_category/countrynamesortfix"] = 6500,
["Foo–Bar_relations_category/fixcountryname"] = 6500,
["Foo–Bar_relations_category/inner_core"] = 6500,
["Foo–Bar_relations_category/mapname"] = 6500,
["For"] = 209000,
["For-multi"] = 13000,
["For_loop"] = 1160000,
["For_multi"] = 7200,
["For_nowiki"] = 9500,
["ForaDeJogo"] = 4100,
["Force_plural"] = 17000,
["Force_singular"] = 2800,
["Format_link"] = 12000,
["Format_linkr"] = 7200,
["Format_numeric_span"] = 3700,
["Format_price"] = 8800,
["Format_price/digits"] = 8600,
["Formatprice"] = 4000,
["Fossil_range"] = 14000,
["Fossil_range/bar"] = 25000,
["Fossilrange"] = 6700,
["Foundational_Model_of_Anatomy"] = 3400,
["Frac"] = 35000,
["Fraction"] = 41000,
["Fraction/styles.css"] = 106000,
["France_metadata_Wikidata"] = 36000,
["Free_access"] = 5300,
["Free_in_US_media"] = 23000,
["Free_media"] = 138000,
["Freedom_of_panorama_(US_only)"] = 5200,
["Frequency"] = 7600,
["Friday"] = 2700,
["Fs_end"] = 20000,
["Fs_mid"] = 18000,
["Fs_player"] = 20000,
["Fs_start"] = 20000,
["Full-time_equivalent"] = 3100,
["Full_citation_needed"] = 10000,
["Full_party_name_with_color"] = 6200,
["Fullurl"] = 7000,
["Fullurl:"] = 6800,
["Further"] = 76000,
["Further_information"] = 2500,
["Fussballdaten"] = 4200,
["Module:Fb_overview"] = 6200,
["Module:Fba"] = 18000,
["Module:Fba/list"] = 35000,
["Module:FeaturedTopicSum"] = 6900,
["Module:Fedi-share"] = 3900,
["Module:Fiction-based_redirects_to_list_entries_category_handler"] = 3200,
["Module:Fiction-based_redirects_to_list_entries_category_handler/RedirectType"] = 3200,
["Module:Fiction_redirect_category_handler"] = 5200,
["Module:File_link"] = 88000,
["Module:FindYDCportal"] = 393000,
["Module:Find_country"] = 41000,
["Module:Find_demonym"] = 38000,
["Module:Find_sources"] = 1640000,
["Module:Find_sources/config"] = 1640000,
["Module:Find_sources/links"] = 1640000,
["Module:Find_sources/templates/Find_general_sources"] = 916000,
["Module:Find_sources/templates/Find_sources_mainspace"] = 715000,
["Module:Find_sources/templates/Find_sources_medical"] = 8200,
["Module:Find_sources/templates/Find_sources_video_games"] = 6900,
["Module:Flag"] = 373000,
["Module:Flag_list"] = 11000,
["Module:Flagg"] = 454000,
["Module:Flagg/Altvar_data"] = 32000,
["Module:Football_box"] = 29000,
["Module:Football_box/styles.css"] = 29000,
["Module:Football_box_collapsible"] = 30000,
["Module:Football_manager_history"] = 24000,
["Module:Football_squad"] = 46000,
["Module:Footballer_positions"] = 218000,
["Module:Footnotes"] = 362000,
["Module:Footnotes/anchor_id_list"] = 269000,
["Module:Footnotes/anchor_id_list/data"] = 269000,
["Module:Footnotes/whitelist"] = 269000,
["Module:For"] = 210000,
["Module:For_loop"] = 1160000,
["Module:For_nowiki"] = 9500,
["Module:Format_link"] = 1500000,
["Module:Formatted_appearance"] = 5900,
}
p3aenmvd09dfmyoiuqm0xndw0q0hghv
670314
670313
2026-06-07T05:11:41Z
Ahechtbot
14654
[[Wikipedia:BOT|Bot]]: Updated page.
670314
Scribunto
text/plain
return {
["F1"] = 5300,
["FA-Class"] = 16000,
["FAA-airport"] = 3800,
["FACClosed"] = 6400,
["FAC_link"] = 117000,
["FAR_link"] = 117000,
["FCC-LMS-Facility"] = 5800,
["FCC_Licensing_and_Management_System_facility"] = 16000,
["FCCdata"] = 2600,
["FFU"] = 2000,
["FIDE"] = 2500,
["FIFA_player"] = 10000,
["FIG_country_code"] = 2600,
["FIN"] = 9900,
["FIPS"] = 2400,
["FJC_Bio"] = 4000,
["FL-Class"] = 13000,
["FLCClosed"] = 3600,
["FLC_link"] = 117000,
["FM-Class"] = 4300,
["FMA"] = 3400,
["FMARB"] = 8900,
["FM_station_data"] = 8500,
["FPCnom/VotingEnds"] = 12000,
["FPCresult"] = 18000,
["FRA"] = 21000,
["FRG"] = 3800,
["FTE"] = 3100,
["FULLBASEPAGENAME"] = 355000,
["FULLROOTPAGENAME"] = 3770000,
["FXL"] = 2200,
["FYI"] = 2100,
["Fa_bottom"] = 3400,
["Fa_top"] = 3400,
["Facebook"] = 14000,
["Facepalm"] = 2800,
["Facl"] = 117000,
["Fact"] = 39000,
["FadedPage"] = 2700,
["FailedGA"] = 3800,
["Failed_verification"] = 18000,
["Fake_heading"] = 2300,
["Fake_heading/styles.css"] = 2300,
["Fake_link/styles.css"] = 2000,
["Family_name_explanation"] = 97000,
["Family_name_explanation/core"] = 97000,
["Family_name_footnote"] = 2200,
["Family_name_hatnote"] = 95000,
["Farl"] = 117000,
["Fb"] = 31000,
["Fb-rt"] = 6300,
["Fb_cs_footer"] = 3200,
["Fb_gd"] = 11000,
["Fb_overview"] = 6100,
["Fb_overview2"] = 5300,
["Fb_rs"] = 11000,
["Fb_rs_footer"] = 11000,
["Fba/core"] = 9000,
["Fba/list"] = 11000,
["Fbaicon"] = 11000,
["Fbaicon/core"] = 11000,
["Fbicon"] = 3500,
["Fbu"] = 4000,
["Fbu-rt"] = 2600,
["Fbw"] = 6100,
["Fdacite"] = 14000,
["Fdate"] = 2900,
["FeaturedPicture"] = 7300,
["Featured_article"] = 7300,
["Featured_article_tools"] = 12000,
["Featured_list"] = 4900,
["Featured_picture"] = 8800,
["Featured_topic_box"] = 3700,
["Featured_topic_box/styles.css"] = 3700,
["Feedback_link"] = 4600,
["Fiction-based_redirects_to_list_entries_category_handler"] = 3200,
["Fictional_character_redirect"] = 3900,
["File-Class"] = 13000,
["File_other"] = 994000,
["Filipino_name"] = 4400,
["Film_date"] = 166000,
["Filter_category_by_topic"] = 2800,
["Find"] = 8500,
["FindYDCportal"] = 222000,
["Find_a_Grave"] = 24000,
["Find_country"] = 42000,
["Find_demonym"] = 38000,
["Find_general_sources"] = 916000,
["Find_medical_sources"] = 8200,
["Find_page_text"] = 2790000,
["Find_sources"] = 623000,
["Find_sources/proj/is_biography"] = 608000,
["Find_sources/proj/is_med"] = 623000,
["Find_sources/proj/is_video"] = 615000,
["Find_sources/top_proj"] = 623000,
["Find_sources_AFD"] = 259000,
["Find_sources_mainspace"] = 714000,
["Find_video_game_sources"] = 6900,
["Find_video_game_sources_short"] = 3100,
["Findsources"] = 42000,
["First_word"] = 678000,
["FishBase"] = 20000,
["FishBase_genus"] = 4200,
["Fix"] = 1050000,
["Fix-span"] = 64000,
["Fix/category"] = 1020000,
["Fix_comma_category"] = 597000,
["Fixed"] = 10000,
["Fl."] = 3700,
["Flag"] = 346000,
["Flag/core"] = 346000,
["FlagCGFathlete"] = 2200,
["FlagIOC"] = 10000,
["FlagIOC2"] = 4700,
["FlagIOC2athlete"] = 6700,
["FlagIOC2team"] = 2900,
["FlagIOCathlete"] = 11000,
["FlagIPC"] = 3300,
["FlagPASO"] = 2100,
["FlagPASOathlete"] = 3300,
["Flag_CGF_athlete"] = 2400,
["Flag_IOC"] = 13000,
["Flag_IOC_2"] = 18000,
["Flag_IOC_2_athlete"] = 15000,
["Flag_IOC_2_medalist"] = 5100,
["Flag_IOC_2_team"] = 4400,
["Flag_IOC_athlete"] = 13000,
["Flag_IPC"] = 4000,
["Flag_PASO"] = 3000,
["Flag_PASO_athlete"] = 3500,
["Flag_athlete"] = 39000,
["Flag_country"] = 41000,
["Flag_country/core"] = 41000,
["Flag_data"] = 12000,
["Flag_decoration"] = 94000,
["Flag_decoration/core"] = 94000,
["Flag_icon"] = 615000,
["Flag_icon/core"] = 615000,
["Flag_icon/nt"] = 9500,
["Flag_link"] = 2100,
["Flag_link/core"] = 87000,
["Flag_medalist"] = 2900,
["Flag_medalist/core"] = 2900,
["Flag_team"] = 2900,
["Flagathlete"] = 31000,
["Flagbig"] = 5100,
["Flagbig/core"] = 8900,
["Flagcountry"] = 26000,
["Flagdeco"] = 60000,
["Flagg"] = 23000,
["Flagicon"] = 460000,
["Flagicon_image"] = 52000,
["Flagmedalist"] = 2800,
["Flagright/core"] = 26000,
["Flagteam"] = 2500,
["Flagu"] = 31000,
["Flagu/core"] = 31000,
["Flat_list"] = 7700,
["Flatlist"] = 2640000,
["Flcl"] = 117000,
["FloraBase"] = 6100,
["Floruit"] = 7600,
["Fmbox"] = 24000,
["FoP-USonly"] = 5200,
["Font"] = 12000,
["Font_color"] = 52000,
["Fontcolor"] = 6900,
["Fooian_companies_established_in_the_year"] = 5500,
["Fooian_expatriate_sportspeople_in_Bar_cat"] = 11000,
["Fooian_expatriate_sportspeople_in_Bar_cat/core"] = 11000,
["Fooian_expatriate_sportspeople_in_Bar_cat/sortname"] = 11000,
["Fooian_fooers"] = 14000,
["FootballFacts.ru"] = 6000,
["Football_box"] = 29000,
["Football_box_collapsible"] = 30000,
["Football_box_collapsible/styles.css"] = 30000,
["Football_kit"] = 54000,
["Football_manager_history"] = 23000,
["Football_squad"] = 46000,
["Football_squad2_player"] = 49000,
["Football_squad_end"] = 22000,
["Football_squad_manager"] = 47000,
["Football_squad_mid"] = 19000,
["Football_squad_player"] = 22000,
["Football_squad_player/role"] = 8100,
["Football_squad_player/styles.css"] = 22000,
["Football_squad_start"] = 22000,
["Footballbox"] = 5800,
["Footballbox_collapsible"] = 8900,
["Footballstats"] = 4100,
["Foo–Bar_relations_category"] = 6500,
["Foo–Bar_relations_category/core"] = 6500,
["Foo–Bar_relations_category/countrynamesortfix"] = 6500,
["Foo–Bar_relations_category/fixcountryname"] = 6500,
["Foo–Bar_relations_category/inner_core"] = 6500,
["Foo–Bar_relations_category/mapname"] = 6500,
["For"] = 209000,
["For-multi"] = 13000,
["For_loop"] = 1160000,
["For_multi"] = 7100,
["For_nowiki"] = 9500,
["ForaDeJogo"] = 4100,
["Force_plural"] = 17000,
["Force_singular"] = 2800,
["Format_link"] = 12000,
["Format_linkr"] = 7300,
["Format_numeric_span"] = 3800,
["Format_price"] = 8800,
["Format_price/digits"] = 8600,
["Formatprice"] = 4000,
["Fossil_range"] = 14000,
["Fossil_range/bar"] = 25000,
["Fossilrange"] = 6700,
["Foundational_Model_of_Anatomy"] = 3400,
["Frac"] = 35000,
["Fraction"] = 41000,
["Fraction/styles.css"] = 106000,
["France_metadata_Wikidata"] = 36000,
["Free_access"] = 5300,
["Free_in_US_media"] = 23000,
["Free_media"] = 138000,
["Freedom_of_panorama_(US_only)"] = 5200,
["Frequency"] = 7600,
["Friday"] = 2700,
["Fs_end"] = 20000,
["Fs_mid"] = 18000,
["Fs_player"] = 20000,
["Fs_start"] = 20000,
["Full-time_equivalent"] = 3100,
["Full_citation_needed"] = 10000,
["Full_party_name_with_color"] = 6200,
["Fullurl"] = 7000,
["Fullurl:"] = 6800,
["Further"] = 76000,
["Further_information"] = 2500,
["Fussballdaten"] = 4200,
["Module:Fb_overview"] = 6200,
["Module:Fba"] = 18000,
["Module:Fba/list"] = 35000,
["Module:FeaturedTopicSum"] = 6900,
["Module:Fedi-share"] = 3900,
["Module:Fiction-based_redirects_to_list_entries_category_handler"] = 3200,
["Module:Fiction-based_redirects_to_list_entries_category_handler/RedirectType"] = 3200,
["Module:Fiction_redirect_category_handler"] = 5200,
["Module:File_link"] = 89000,
["Module:FindYDCportal"] = 393000,
["Module:Find_country"] = 42000,
["Module:Find_demonym"] = 38000,
["Module:Find_sources"] = 1640000,
["Module:Find_sources/config"] = 1640000,
["Module:Find_sources/links"] = 1640000,
["Module:Find_sources/templates/Find_general_sources"] = 916000,
["Module:Find_sources/templates/Find_sources_mainspace"] = 714000,
["Module:Find_sources/templates/Find_sources_medical"] = 8200,
["Module:Find_sources/templates/Find_sources_video_games"] = 6900,
["Module:Flag"] = 373000,
["Module:Flag_list"] = 11000,
["Module:Flagg"] = 454000,
["Module:Flagg/Altvar_data"] = 33000,
["Module:Football_box"] = 30000,
["Module:Football_box/styles.css"] = 29000,
["Module:Football_box_collapsible"] = 30000,
["Module:Football_event"] = 55000,
["Module:Football_manager_history"] = 24000,
["Module:Football_squad"] = 46000,
["Module:Footballer_positions"] = 218000,
["Module:Footnotes"] = 363000,
["Module:Footnotes/anchor_id_list"] = 269000,
["Module:Footnotes/anchor_id_list/data"] = 269000,
["Module:Footnotes/whitelist"] = 269000,
["Module:For"] = 210000,
["Module:For_loop"] = 1160000,
["Module:For_nowiki"] = 9500,
["Module:Format_link"] = 1500000,
["Module:Formatted_appearance"] = 5900,
}
g8pzfderfmavwzmvohbv4of9uawq8uk
670315
670314
2026-06-14T05:11:41Z
Ahechtbot
14654
[[Wikipedia:BOT|Bot]]: Updated page.
670315
Scribunto
text/plain
return {
["F1"] = 5300,
["FA-Class"] = 16000,
["FAA-airport"] = 3800,
["FACClosed"] = 6400,
["FAC_link"] = 118000,
["FAR_link"] = 118000,
["FCC-LMS-Facility"] = 5800,
["FCC_Licensing_and_Management_System_facility"] = 16000,
["FCCdata"] = 2600,
["FFU"] = 2000,
["FIDE"] = 2500,
["FIFA_player"] = 10000,
["FIG_country_code"] = 2600,
["FIN"] = 9900,
["FIPS"] = 2400,
["FJC_Bio"] = 4000,
["FL-Class"] = 13000,
["FLCClosed"] = 3600,
["FLC_link"] = 118000,
["FM-Class"] = 4300,
["FMA"] = 3400,
["FMARB"] = 8900,
["FM_station_data"] = 8500,
["FPCnom/VotingEnds"] = 12000,
["FPCresult"] = 18000,
["FRA"] = 21000,
["FRG"] = 3800,
["FTE"] = 3100,
["FULLBASEPAGENAME"] = 356000,
["FULLROOTPAGENAME"] = 3770000,
["FXL"] = 2200,
["FYI"] = 2100,
["Fa_bottom"] = 3400,
["Fa_top"] = 3400,
["Facebook"] = 14000,
["Facepalm"] = 2900,
["Facl"] = 118000,
["Fact"] = 39000,
["FadedPage"] = 2700,
["FailedGA"] = 3800,
["Failed_verification"] = 18000,
["Fake_heading"] = 2300,
["Fake_heading/styles.css"] = 2300,
["Fake_link/styles.css"] = 2000,
["Family_name_explanation"] = 97000,
["Family_name_explanation/core"] = 97000,
["Family_name_footnote"] = 2200,
["Family_name_hatnote"] = 95000,
["Farl"] = 118000,
["Fb"] = 31000,
["Fb-rt"] = 6300,
["Fb_cs_footer"] = 3300,
["Fb_gd"] = 11000,
["Fb_overview"] = 6100,
["Fb_overview2"] = 5400,
["Fb_rs"] = 11000,
["Fb_rs_footer"] = 11000,
["Fba/core"] = 9000,
["Fba/list"] = 11000,
["Fbaicon"] = 11000,
["Fbaicon/core"] = 11000,
["Fbicon"] = 3500,
["Fbu"] = 4000,
["Fbu-rt"] = 2600,
["Fbw"] = 6100,
["Fdacite"] = 14000,
["Fdate"] = 2900,
["FeaturedPicture"] = 7300,
["Featured_article"] = 7300,
["Featured_article_tools"] = 12000,
["Featured_list"] = 4900,
["Featured_picture"] = 8800,
["Featured_topic_box"] = 3700,
["Featured_topic_box/styles.css"] = 3700,
["Feedback_link"] = 4600,
["Fiction-based_redirects_to_list_entries_category_handler"] = 3200,
["Fictional_character_redirect"] = 3900,
["File-Class"] = 13000,
["File_other"] = 994000,
["Filipino_name"] = 4400,
["Film_date"] = 166000,
["Filter_category_by_topic"] = 2800,
["Find"] = 8500,
["FindYDCportal"] = 222000,
["Find_a_Grave"] = 24000,
["Find_country"] = 42000,
["Find_demonym"] = 38000,
["Find_general_sources"] = 917000,
["Find_medical_sources"] = 8200,
["Find_page_text"] = 2790000,
["Find_sources"] = 623000,
["Find_sources/proj/is_biography"] = 608000,
["Find_sources/proj/is_med"] = 623000,
["Find_sources/proj/is_video"] = 615000,
["Find_sources/top_proj"] = 623000,
["Find_sources_AFD"] = 260000,
["Find_sources_mainspace"] = 715000,
["Find_video_game_sources"] = 6900,
["Find_video_game_sources_short"] = 3100,
["Findsources"] = 42000,
["First_word"] = 678000,
["FishBase"] = 20000,
["FishBase_genus"] = 4200,
["Fix"] = 1050000,
["Fix-span"] = 64000,
["Fix/category"] = 1020000,
["Fix_comma_category"] = 597000,
["Fixed"] = 10000,
["Fl."] = 3700,
["Flag"] = 346000,
["Flag/core"] = 346000,
["FlagCGFathlete"] = 2200,
["FlagIOC"] = 10000,
["FlagIOC2"] = 4700,
["FlagIOC2athlete"] = 6700,
["FlagIOC2team"] = 2900,
["FlagIOCathlete"] = 11000,
["FlagIPC"] = 3300,
["FlagPASO"] = 2100,
["FlagPASOathlete"] = 3300,
["Flag_CGF_athlete"] = 2400,
["Flag_IOC"] = 13000,
["Flag_IOC_2"] = 18000,
["Flag_IOC_2_athlete"] = 15000,
["Flag_IOC_2_medalist"] = 5100,
["Flag_IOC_2_team"] = 4400,
["Flag_IOC_athlete"] = 13000,
["Flag_IPC"] = 4000,
["Flag_PASO"] = 3000,
["Flag_PASO_athlete"] = 3500,
["Flag_athlete"] = 39000,
["Flag_country"] = 41000,
["Flag_country/core"] = 41000,
["Flag_data"] = 12000,
["Flag_decoration"] = 94000,
["Flag_decoration/core"] = 94000,
["Flag_icon"] = 615000,
["Flag_icon/core"] = 615000,
["Flag_icon/nt"] = 9600,
["Flag_link"] = 2100,
["Flag_link/core"] = 87000,
["Flag_medalist"] = 2900,
["Flag_medalist/core"] = 2900,
["Flag_team"] = 2900,
["Flagathlete"] = 31000,
["Flagbig"] = 5100,
["Flagbig/core"] = 8900,
["Flagcountry"] = 26000,
["Flagdeco"] = 60000,
["Flagg"] = 23000,
["Flagicon"] = 460000,
["Flagicon_image"] = 52000,
["Flagmedalist"] = 2800,
["Flagright/core"] = 26000,
["Flagteam"] = 2500,
["Flagu"] = 31000,
["Flagu/core"] = 31000,
["Flat_list"] = 7700,
["Flatlist"] = 2640000,
["Flcl"] = 118000,
["FloraBase"] = 6100,
["Floruit"] = 7600,
["Fmbox"] = 24000,
["FoP-USonly"] = 5200,
["Font"] = 12000,
["Font_color"] = 52000,
["Fontcolor"] = 6900,
["Fooian_companies_established_in_the_year"] = 5500,
["Fooian_expatriate_sportspeople_in_Bar_cat"] = 11000,
["Fooian_expatriate_sportspeople_in_Bar_cat/core"] = 11000,
["Fooian_expatriate_sportspeople_in_Bar_cat/sortname"] = 11000,
["Fooian_fooers"] = 14000,
["FootballFacts.ru"] = 6000,
["Football_box"] = 29000,
["Football_box_collapsible"] = 30000,
["Football_box_collapsible/styles.css"] = 30000,
["Football_kit"] = 54000,
["Football_manager_history"] = 23000,
["Football_squad"] = 45000,
["Football_squad2_player"] = 49000,
["Football_squad_end"] = 22000,
["Football_squad_manager"] = 47000,
["Football_squad_mid"] = 19000,
["Football_squad_player"] = 22000,
["Football_squad_player/role"] = 8100,
["Football_squad_player/styles.css"] = 22000,
["Football_squad_start"] = 22000,
["Footballbox"] = 5800,
["Footballbox_collapsible"] = 8900,
["Footballstats"] = 4100,
["Foo–Bar_relations_category"] = 6500,
["Foo–Bar_relations_category/core"] = 6500,
["Foo–Bar_relations_category/countrynamesortfix"] = 6500,
["Foo–Bar_relations_category/fixcountryname"] = 6500,
["Foo–Bar_relations_category/inner_core"] = 6500,
["Foo–Bar_relations_category/mapname"] = 6500,
["For"] = 209000,
["For-multi"] = 13000,
["For_loop"] = 1160000,
["For_multi"] = 7100,
["For_nowiki"] = 9500,
["ForaDeJogo"] = 4100,
["Force_plural"] = 17000,
["Force_singular"] = 2800,
["Format_link"] = 12000,
["Format_linkr"] = 7300,
["Format_numeric_span"] = 3700,
["Format_price"] = 8800,
["Format_price/digits"] = 8600,
["Formatprice"] = 4000,
["Fossil_range"] = 14000,
["Fossil_range/bar"] = 25000,
["Fossilrange"] = 6700,
["Foundational_Model_of_Anatomy"] = 3400,
["Frac"] = 35000,
["Fraction"] = 41000,
["Fraction/styles.css"] = 106000,
["France_metadata_Wikidata"] = 36000,
["Free_access"] = 5300,
["Free_in_US_media"] = 23000,
["Free_media"] = 138000,
["Freedom_of_panorama_(US_only)"] = 5300,
["Frequency"] = 7700,
["Friday"] = 2800,
["Fs_end"] = 20000,
["Fs_mid"] = 18000,
["Fs_player"] = 20000,
["Fs_start"] = 20000,
["Full-time_equivalent"] = 3100,
["Full_citation_needed"] = 10000,
["Full_party_name_with_color"] = 6200,
["Fullurl"] = 7000,
["Fullurl:"] = 6800,
["Further"] = 76000,
["Further_information"] = 2500,
["Fussballdaten"] = 4200,
["Module:Fb_overview"] = 6300,
["Module:Fba"] = 18000,
["Module:Fba/list"] = 35000,
["Module:FeaturedTopicSum"] = 6900,
["Module:Fedi-share"] = 3900,
["Module:Fiction-based_redirects_to_list_entries_category_handler"] = 3200,
["Module:Fiction-based_redirects_to_list_entries_category_handler/RedirectType"] = 3200,
["Module:Fiction_redirect_category_handler"] = 5200,
["Module:File_link"] = 89000,
["Module:FindYDCportal"] = 394000,
["Module:Find_country"] = 42000,
["Module:Find_demonym"] = 38000,
["Module:Find_sources"] = 1640000,
["Module:Find_sources/config"] = 1640000,
["Module:Find_sources/links"] = 1640000,
["Module:Find_sources/templates/Find_general_sources"] = 917000,
["Module:Find_sources/templates/Find_sources_mainspace"] = 715000,
["Module:Find_sources/templates/Find_sources_medical"] = 8200,
["Module:Find_sources/templates/Find_sources_video_games"] = 6900,
["Module:Flag"] = 373000,
["Module:Flag_list"] = 11000,
["Module:Flagg"] = 454000,
["Module:Flagg/Altvar_data"] = 33000,
["Module:Football_box"] = 30000,
["Module:Football_box/styles.css"] = 29000,
["Module:Football_box_collapsible"] = 30000,
["Module:Football_event"] = 55000,
["Module:Football_manager_history"] = 24000,
["Module:Football_squad"] = 46000,
["Module:Footballer_positions"] = 218000,
["Module:Footnotes"] = 363000,
["Module:Footnotes/anchor_id_list"] = 269000,
["Module:Footnotes/anchor_id_list/data"] = 269000,
["Module:Footnotes/whitelist"] = 269000,
["Module:For"] = 210000,
["Module:For_loop"] = 1160000,
["Module:For_nowiki"] = 9500,
["Module:Format_link"] = 1500000,
["Module:Formatted_appearance"] = 5900,
}
s4m9xi9suipddhmp1v5kwopha4x19xu
670316
670315
2026-06-21T05:10:25Z
Ahechtbot
14654
[[Wikipedia:BOT|Bot]]: Updated page.
670316
Scribunto
text/plain
return {
["F1"] = 5300,
["FA-Class"] = 16000,
["FAA-airport"] = 3800,
["FACClosed"] = 6400,
["FAC_link"] = 118000,
["FAR_link"] = 118000,
["FCC-LMS-Facility"] = 5800,
["FCC_Licensing_and_Management_System_facility"] = 16000,
["FCCdata"] = 2600,
["FFU"] = 2000,
["FIDE"] = 2500,
["FIFA_player"] = 10000,
["FIG_country_code"] = 2600,
["FIN"] = 9900,
["FIPS"] = 2400,
["FJC_Bio"] = 4000,
["FL-Class"] = 13000,
["FLCClosed"] = 3600,
["FLC_link"] = 118000,
["FM-Class"] = 4300,
["FMA"] = 3400,
["FMARB"] = 8900,
["FM_station_data"] = 8500,
["FPCnom/VotingEnds"] = 12000,
["FPCresult"] = 18000,
["FRA"] = 21000,
["FRG"] = 3800,
["FTE"] = 3200,
["FULLBASEPAGENAME"] = 356000,
["FULLROOTPAGENAME"] = 3770000,
["FXL"] = 2200,
["FYI"] = 2100,
["Fa_bottom"] = 3400,
["Fa_top"] = 3400,
["Facebook"] = 14000,
["Facepalm"] = 2900,
["Facl"] = 118000,
["Fact"] = 39000,
["FadedPage"] = 2700,
["FailedGA"] = 3800,
["Failed_verification"] = 18000,
["Fake_heading"] = 2300,
["Fake_heading/styles.css"] = 2300,
["Fake_link/styles.css"] = 2000,
["Family_name_explanation"] = 98000,
["Family_name_explanation/core"] = 98000,
["Family_name_footnote"] = 2200,
["Family_name_hatnote"] = 95000,
["Farl"] = 118000,
["Fb"] = 31000,
["Fb-rt"] = 6300,
["Fb_cs_footer"] = 3300,
["Fb_gd"] = 11000,
["Fb_overview"] = 6200,
["Fb_overview2"] = 5400,
["Fb_rs"] = 11000,
["Fb_rs_footer"] = 11000,
["Fba/core"] = 9000,
["Fba/list"] = 11000,
["Fbaicon"] = 11000,
["Fbaicon/core"] = 11000,
["Fbicon"] = 3500,
["Fbu"] = 4000,
["Fbu-rt"] = 2600,
["Fbw"] = 6100,
["Fdacite"] = 14000,
["Fdate"] = 2900,
["FeaturedPicture"] = 7300,
["Featured_article"] = 7300,
["Featured_article_tools"] = 12000,
["Featured_list"] = 4900,
["Featured_picture"] = 8800,
["Featured_topic_box"] = 3700,
["Featured_topic_box/styles.css"] = 3700,
["Feedback_link"] = 4600,
["Fiction-based_redirects_to_list_entries_category_handler"] = 3200,
["Fictional_character_redirect"] = 3900,
["File-Class"] = 13000,
["File_other"] = 995000,
["Filipino_name"] = 4400,
["Film_date"] = 166000,
["Filter_category_by_topic"] = 2800,
["Find"] = 8500,
["FindYDCportal"] = 223000,
["Find_a_Grave"] = 24000,
["Find_country"] = 43000,
["Find_demonym"] = 38000,
["Find_general_sources"] = 917000,
["Find_medical_sources"] = 8200,
["Find_page_text"] = 2790000,
["Find_sources"] = 623000,
["Find_sources/proj/is_biography"] = 608000,
["Find_sources/proj/is_med"] = 623000,
["Find_sources/proj/is_video"] = 615000,
["Find_sources/top_proj"] = 623000,
["Find_sources_AFD"] = 260000,
["Find_sources_mainspace"] = 714000,
["Find_video_game_sources"] = 6900,
["Find_video_game_sources_short"] = 3100,
["Findsources"] = 42000,
["First_word"] = 678000,
["FishBase"] = 20000,
["FishBase_genus"] = 4200,
["Fix"] = 1050000,
["Fix-span"] = 64000,
["Fix/category"] = 1020000,
["Fix_comma_category"] = 597000,
["Fixed"] = 10000,
["Fl."] = 3800,
["Flag"] = 346000,
["Flag/core"] = 346000,
["FlagCGFathlete"] = 2200,
["FlagIOC"] = 10000,
["FlagIOC2"] = 4700,
["FlagIOC2athlete"] = 6800,
["FlagIOC2team"] = 2900,
["FlagIOCathlete"] = 11000,
["FlagIPC"] = 3300,
["FlagPASO"] = 2100,
["FlagPASOathlete"] = 3300,
["Flag_CGF_athlete"] = 2400,
["Flag_IOC"] = 13000,
["Flag_IOC_2"] = 18000,
["Flag_IOC_2_athlete"] = 15000,
["Flag_IOC_2_medalist"] = 5100,
["Flag_IOC_2_team"] = 4400,
["Flag_IOC_athlete"] = 13000,
["Flag_IPC"] = 4000,
["Flag_PASO"] = 3000,
["Flag_PASO_athlete"] = 3500,
["Flag_athlete"] = 39000,
["Flag_country"] = 41000,
["Flag_country/core"] = 41000,
["Flag_data"] = 12000,
["Flag_decoration"] = 95000,
["Flag_decoration/core"] = 95000,
["Flag_icon"] = 616000,
["Flag_icon/core"] = 616000,
["Flag_icon/nt"] = 9600,
["Flag_link"] = 2100,
["Flag_link/core"] = 87000,
["Flag_medalist"] = 2800,
["Flag_medalist/core"] = 2800,
["Flag_team"] = 2900,
["Flagathlete"] = 31000,
["Flagbig"] = 5100,
["Flagbig/core"] = 8900,
["Flagcountry"] = 26000,
["Flagdeco"] = 61000,
["Flagg"] = 23000,
["Flagicon"] = 460000,
["Flagicon_image"] = 52000,
["Flagmedalist"] = 2800,
["Flagright/core"] = 26000,
["Flagteam"] = 2500,
["Flagu"] = 31000,
["Flagu/core"] = 31000,
["Flat_list"] = 7700,
["Flatlist"] = 2650000,
["Flcl"] = 118000,
["FloraBase"] = 6100,
["Floruit"] = 7600,
["Fmbox"] = 24000,
["FoP-USonly"] = 5200,
["Font"] = 12000,
["Font_color"] = 52000,
["Fontcolor"] = 6900,
["Fooian_companies_established_in_the_year"] = 5500,
["Fooian_expatriate_sportspeople_in_Bar_cat"] = 11000,
["Fooian_expatriate_sportspeople_in_Bar_cat/core"] = 11000,
["Fooian_expatriate_sportspeople_in_Bar_cat/sortname"] = 11000,
["Fooian_fooers"] = 14000,
["FootballFacts.ru"] = 6000,
["Football_box"] = 29000,
["Football_box_collapsible"] = 30000,
["Football_box_collapsible/styles.css"] = 30000,
["Football_kit"] = 54000,
["Football_manager_history"] = 23000,
["Football_squad"] = 45000,
["Football_squad2_player"] = 49000,
["Football_squad_end"] = 22000,
["Football_squad_manager"] = 46000,
["Football_squad_mid"] = 19000,
["Football_squad_player"] = 22000,
["Football_squad_player/role"] = 8200,
["Football_squad_player/styles.css"] = 22000,
["Football_squad_start"] = 22000,
["Footballbox"] = 5800,
["Footballbox_collapsible"] = 8900,
["Footballstats"] = 4100,
["Foo–Bar_relations_category"] = 6300,
["Foo–Bar_relations_category/core"] = 6300,
["Foo–Bar_relations_category/countrynamesortfix"] = 6300,
["Foo–Bar_relations_category/fixcountryname"] = 6300,
["Foo–Bar_relations_category/inner_core"] = 6300,
["Foo–Bar_relations_category/mapname"] = 6300,
["For"] = 209000,
["For-multi"] = 13000,
["For_loop"] = 1160000,
["For_multi"] = 7100,
["For_nowiki"] = 9500,
["ForaDeJogo"] = 4100,
["Force_plural"] = 17000,
["Force_singular"] = 2800,
["Format_link"] = 12000,
["Format_linkr"] = 7300,
["Format_numeric_span"] = 3700,
["Format_price"] = 8800,
["Format_price/digits"] = 8600,
["Formatprice"] = 4000,
["Fossil_range"] = 14000,
["Fossil_range/bar"] = 25000,
["Fossilrange"] = 6700,
["Foundational_Model_of_Anatomy"] = 3400,
["Frac"] = 35000,
["Fraction"] = 41000,
["Fraction/styles.css"] = 106000,
["France_metadata_Wikidata"] = 36000,
["Free_access"] = 5300,
["Free_in_US_media"] = 23000,
["Free_media"] = 138000,
["Freedom_of_panorama_(US_only)"] = 5300,
["Frequency"] = 7700,
["Friday"] = 2800,
["Fs_end"] = 20000,
["Fs_mid"] = 18000,
["Fs_player"] = 20000,
["Fs_start"] = 20000,
["Full-time_equivalent"] = 3200,
["Full_citation_needed"] = 10000,
["Full_party_name_with_color"] = 6200,
["Fullurl"] = 7000,
["Fullurl:"] = 6800,
["Further"] = 76000,
["Further_information"] = 2500,
["Fussballdaten"] = 4200,
["Module:Fb_overview"] = 6300,
["Module:Fba"] = 18000,
["Module:Fba/list"] = 35000,
["Module:FeaturedTopicSum"] = 6900,
["Module:Fedi-share"] = 3900,
["Module:Fiction-based_redirects_to_list_entries_category_handler"] = 3300,
["Module:Fiction-based_redirects_to_list_entries_category_handler/RedirectType"] = 3300,
["Module:Fiction_redirect_category_handler"] = 5200,
["Module:File_link"] = 89000,
["Module:FindYDCportal"] = 394000,
["Module:Find_country"] = 43000,
["Module:Find_demonym"] = 38000,
["Module:Find_sources"] = 1640000,
["Module:Find_sources/config"] = 1640000,
["Module:Find_sources/links"] = 1640000,
["Module:Find_sources/templates/Find_general_sources"] = 917000,
["Module:Find_sources/templates/Find_sources_mainspace"] = 714000,
["Module:Find_sources/templates/Find_sources_medical"] = 8200,
["Module:Find_sources/templates/Find_sources_video_games"] = 6900,
["Module:Flag"] = 373000,
["Module:Flag_list"] = 11000,
["Module:Flagg"] = 454000,
["Module:Flagg/Altvar_data"] = 33000,
["Module:Football_box"] = 30000,
["Module:Football_box/styles.css"] = 30000,
["Module:Football_box_collapsible"] = 30000,
["Module:Football_event"] = 55000,
["Module:Football_manager_history"] = 24000,
["Module:Football_squad"] = 46000,
["Module:Footballer_positions"] = 218000,
["Module:Footnotes"] = 364000,
["Module:Footnotes/anchor_id_list"] = 270000,
["Module:Footnotes/anchor_id_list/data"] = 270000,
["Module:Footnotes/whitelist"] = 270000,
["Module:For"] = 210000,
["Module:For_loop"] = 1160000,
["Module:For_nowiki"] = 9500,
["Module:Format_link"] = 1500000,
["Module:Formatted_appearance"] = 6000,
}
nxs1za8mr61hjrnzw3oph6rfj759y0u
670317
670316
2026-06-28T05:09:50Z
Ahechtbot
14654
[[Wikipedia:BOT|Bot]]: Updated page.
670317
Scribunto
text/plain
return {
["F1"] = 5300,
["FA-Class"] = 16000,
["FAA-airport"] = 3800,
["FACClosed"] = 6400,
["FAC_link"] = 118000,
["FAR_link"] = 118000,
["FCC-LMS-Facility"] = 5800,
["FCC_Licensing_and_Management_System_facility"] = 16000,
["FCCdata"] = 2600,
["FFU"] = 2000,
["FIDE"] = 2500,
["FIFA_player"] = 10000,
["FIG_country_code"] = 2600,
["FIN"] = 9900,
["FIPS"] = 2400,
["FJC_Bio"] = 4000,
["FL-Class"] = 13000,
["FLCClosed"] = 3600,
["FLC_link"] = 118000,
["FM-Class"] = 4300,
["FMA"] = 3400,
["FMARB"] = 8900,
["FM_station_data"] = 8500,
["FPCnom/VotingEnds"] = 12000,
["FPCresult"] = 18000,
["FRA"] = 21000,
["FRG"] = 3800,
["FTE"] = 3200,
["FULLBASEPAGENAME"] = 357000,
["FULLROOTPAGENAME"] = 3780000,
["FXL"] = 2200,
["FYI"] = 2100,
["Fa_bottom"] = 3500,
["Fa_top"] = 3400,
["Facebook"] = 14000,
["Facepalm"] = 2900,
["Facl"] = 118000,
["Fact"] = 38000,
["FadedPage"] = 2700,
["FailedGA"] = 3800,
["Failed_verification"] = 18000,
["Fake_heading"] = 2200,
["Fake_heading/styles.css"] = 2200,
["Fake_link/styles.css"] = 2000,
["Family_name_explanation"] = 98000,
["Family_name_explanation/core"] = 98000,
["Family_name_footnote"] = 2200,
["Family_name_hatnote"] = 95000,
["Farl"] = 118000,
["Fb"] = 31000,
["Fb-rt"] = 6300,
["Fb_cs_footer"] = 3300,
["Fb_gd"] = 11000,
["Fb_overview"] = 6200,
["Fb_overview2"] = 5400,
["Fb_rs"] = 11000,
["Fb_rs_footer"] = 11000,
["Fba/core"] = 9000,
["Fba/list"] = 11000,
["Fbaicon"] = 11000,
["Fbaicon/core"] = 11000,
["Fbicon"] = 3600,
["Fbu"] = 4000,
["Fbu-rt"] = 2600,
["Fbw"] = 6100,
["Fdacite"] = 14000,
["Fdate"] = 2900,
["FeaturedPicture"] = 7400,
["Featured_article"] = 7300,
["Featured_article_tools"] = 12000,
["Featured_list"] = 4900,
["Featured_picture"] = 8800,
["Featured_topic_box"] = 3700,
["Featured_topic_box/styles.css"] = 3700,
["Feedback_link"] = 4600,
["Fiction-based_redirects_to_list_entries_category_handler"] = 3300,
["Fictional_character_redirect"] = 3900,
["File-Class"] = 13000,
["File_other"] = 995000,
["Filipino_name"] = 4400,
["Film_date"] = 166000,
["Filter_category_by_topic"] = 2800,
["Find"] = 8500,
["FindYDCportal"] = 222000,
["Find_a_Grave"] = 24000,
["Find_country"] = 44000,
["Find_demonym"] = 38000,
["Find_general_sources"] = 917000,
["Find_medical_sources"] = 8200,
["Find_page_text"] = 2790000,
["Find_sources"] = 623000,
["Find_sources/proj/is_biography"] = 608000,
["Find_sources/proj/is_med"] = 623000,
["Find_sources/proj/is_video"] = 615000,
["Find_sources/top_proj"] = 623000,
["Find_sources_AFD"] = 261000,
["Find_sources_mainspace"] = 714000,
["Find_video_game_sources"] = 6900,
["Find_video_game_sources_short"] = 3100,
["Findsources"] = 42000,
["First_word"] = 679000,
["FishBase"] = 20000,
["FishBase_genus"] = 4200,
["Fix"] = 1050000,
["Fix-span"] = 64000,
["Fix/category"] = 1020000,
["Fix_comma_category"] = 597000,
["Fixed"] = 10000,
["Fl."] = 3800,
["Flag"] = 345000,
["Flag/core"] = 345000,
["FlagCGFathlete"] = 2200,
["FlagIOC"] = 10000,
["FlagIOC2"] = 4700,
["FlagIOC2athlete"] = 6800,
["FlagIOC2team"] = 2900,
["FlagIOCathlete"] = 11000,
["FlagIPC"] = 3300,
["FlagPASO"] = 2100,
["FlagPASOathlete"] = 3300,
["Flag_CGF_athlete"] = 2400,
["Flag_IOC"] = 13000,
["Flag_IOC_2"] = 18000,
["Flag_IOC_2_athlete"] = 15000,
["Flag_IOC_2_medalist"] = 5000,
["Flag_IOC_2_team"] = 4400,
["Flag_IOC_athlete"] = 13000,
["Flag_IPC"] = 4000,
["Flag_PASO"] = 3000,
["Flag_PASO_athlete"] = 3500,
["Flag_athlete"] = 39000,
["Flag_country"] = 41000,
["Flag_country/core"] = 41000,
["Flag_data"] = 12000,
["Flag_decoration"] = 95000,
["Flag_decoration/core"] = 95000,
["Flag_icon"] = 616000,
["Flag_icon/core"] = 616000,
["Flag_icon/nt"] = 9700,
["Flag_link"] = 2100,
["Flag_link/core"] = 87000,
["Flag_medalist"] = 2800,
["Flag_medalist/core"] = 2800,
["Flag_team"] = 2900,
["Flagathlete"] = 31000,
["Flagbig"] = 5100,
["Flagbig/core"] = 8900,
["Flagcountry"] = 26000,
["Flagdeco"] = 61000,
["Flagg"] = 23000,
["Flagicon"] = 460000,
["Flagicon_image"] = 52000,
["Flagmedalist"] = 2800,
["Flagright/core"] = 26000,
["Flagteam"] = 2500,
["Flagu"] = 32000,
["Flagu/core"] = 32000,
["Flat_list"] = 7700,
["Flatlist"] = 2650000,
["Flcl"] = 118000,
["FloraBase"] = 6100,
["Floruit"] = 7700,
["Fmbox"] = 25000,
["FoP-USonly"] = 5200,
["Font"] = 12000,
["Font_color"] = 52000,
["Fontcolor"] = 6900,
["Fooian_companies_established_in_the_year"] = 5500,
["Fooian_expatriate_sportspeople_in_Bar_cat"] = 11000,
["Fooian_expatriate_sportspeople_in_Bar_cat/core"] = 11000,
["Fooian_expatriate_sportspeople_in_Bar_cat/sortname"] = 11000,
["Fooian_fooers"] = 14000,
["FootballFacts.ru"] = 6000,
["Football_box"] = 29000,
["Football_box_collapsible"] = 30000,
["Football_box_collapsible/styles.css"] = 30000,
["Football_kit"] = 54000,
["Football_manager_history"] = 23000,
["Football_squad"] = 45000,
["Football_squad2_player"] = 49000,
["Football_squad_end"] = 22000,
["Football_squad_manager"] = 46000,
["Football_squad_mid"] = 19000,
["Football_squad_player"] = 22000,
["Football_squad_player/role"] = 8200,
["Football_squad_player/styles.css"] = 22000,
["Football_squad_start"] = 22000,
["Footballbox"] = 5800,
["Footballbox_collapsible"] = 9000,
["Footballstats"] = 4100,
["Foo–Bar_relations_category"] = 6300,
["Foo–Bar_relations_category/core"] = 6300,
["Foo–Bar_relations_category/countrynamesortfix"] = 6300,
["Foo–Bar_relations_category/fixcountryname"] = 6300,
["Foo–Bar_relations_category/inner_core"] = 6300,
["Foo–Bar_relations_category/mapname"] = 6300,
["For"] = 209000,
["For-multi"] = 13000,
["For_loop"] = 1170000,
["For_multi"] = 7100,
["For_nowiki"] = 9500,
["ForaDeJogo"] = 4100,
["Force_plural"] = 17000,
["Force_singular"] = 2800,
["Format_link"] = 12000,
["Format_linkr"] = 7200,
["Format_numeric_span"] = 3800,
["Format_price"] = 8800,
["Format_price/digits"] = 8600,
["Formatprice"] = 4000,
["Fossil_range"] = 14000,
["Fossil_range/bar"] = 25000,
["Fossilrange"] = 6700,
["Foundational_Model_of_Anatomy"] = 3400,
["Frac"] = 35000,
["Fraction"] = 41000,
["Fraction/styles.css"] = 107000,
["France_metadata_Wikidata"] = 36000,
["Free_access"] = 5300,
["Free_in_US_media"] = 23000,
["Free_media"] = 138000,
["Freedom_of_panorama_(US_only)"] = 5300,
["Frequency"] = 7700,
["Friday"] = 2800,
["Fs_end"] = 20000,
["Fs_mid"] = 18000,
["Fs_player"] = 20000,
["Fs_start"] = 20000,
["Full-time_equivalent"] = 3200,
["Full_citation_needed"] = 10000,
["Full_party_name_with_color"] = 6200,
["Fullurl"] = 7000,
["Fullurl:"] = 6800,
["Further"] = 76000,
["Further_information"] = 2500,
["Fussballdaten"] = 4200,
["Module:Fb_overview"] = 6400,
["Module:Fba"] = 18000,
["Module:Fba/list"] = 36000,
["Module:FeaturedTopicSum"] = 6900,
["Module:Fedi-share"] = 3900,
["Module:Fiction-based_redirects_to_list_entries_category_handler"] = 3300,
["Module:Fiction-based_redirects_to_list_entries_category_handler/RedirectType"] = 3300,
["Module:Fiction_redirect_category_handler"] = 5200,
["Module:File_link"] = 89000,
["Module:FindYDCportal"] = 396000,
["Module:Find_country"] = 44000,
["Module:Find_demonym"] = 38000,
["Module:Find_sources"] = 1640000,
["Module:Find_sources/config"] = 1640000,
["Module:Find_sources/links"] = 1640000,
["Module:Find_sources/templates/Find_general_sources"] = 917000,
["Module:Find_sources/templates/Find_sources_mainspace"] = 714000,
["Module:Find_sources/templates/Find_sources_medical"] = 8300,
["Module:Find_sources/templates/Find_sources_video_games"] = 6900,
["Module:Flag"] = 373000,
["Module:Flag_list"] = 11000,
["Module:Flagg"] = 454000,
["Module:Flagg/Altvar_data"] = 33000,
["Module:Football_box"] = 30000,
["Module:Football_box/styles.css"] = 30000,
["Module:Football_box_collapsible"] = 30000,
["Module:Football_event"] = 55000,
["Module:Football_manager_history"] = 24000,
["Module:Football_squad"] = 46000,
["Module:Footballer_positions"] = 218000,
["Module:Footnotes"] = 364000,
["Module:Footnotes/anchor_id_list"] = 270000,
["Module:Footnotes/anchor_id_list/data"] = 270000,
["Module:Footnotes/whitelist"] = 270000,
["Module:For"] = 210000,
["Module:For_loop"] = 1170000,
["Module:For_nowiki"] = 9500,
["Module:Format_link"] = 1500000,
["Module:Formatted_appearance"] = 6000,
}
9895ihguxef31te48b3rb2oeiiuilbc
670318
670317
2026-06-29T12:44:19Z
King ChristLike
13051
5 revisions imported from [[:en:Module:Transclusion_count/data/F]]
670317
Scribunto
text/plain
return {
["F1"] = 5300,
["FA-Class"] = 16000,
["FAA-airport"] = 3800,
["FACClosed"] = 6400,
["FAC_link"] = 118000,
["FAR_link"] = 118000,
["FCC-LMS-Facility"] = 5800,
["FCC_Licensing_and_Management_System_facility"] = 16000,
["FCCdata"] = 2600,
["FFU"] = 2000,
["FIDE"] = 2500,
["FIFA_player"] = 10000,
["FIG_country_code"] = 2600,
["FIN"] = 9900,
["FIPS"] = 2400,
["FJC_Bio"] = 4000,
["FL-Class"] = 13000,
["FLCClosed"] = 3600,
["FLC_link"] = 118000,
["FM-Class"] = 4300,
["FMA"] = 3400,
["FMARB"] = 8900,
["FM_station_data"] = 8500,
["FPCnom/VotingEnds"] = 12000,
["FPCresult"] = 18000,
["FRA"] = 21000,
["FRG"] = 3800,
["FTE"] = 3200,
["FULLBASEPAGENAME"] = 357000,
["FULLROOTPAGENAME"] = 3780000,
["FXL"] = 2200,
["FYI"] = 2100,
["Fa_bottom"] = 3500,
["Fa_top"] = 3400,
["Facebook"] = 14000,
["Facepalm"] = 2900,
["Facl"] = 118000,
["Fact"] = 38000,
["FadedPage"] = 2700,
["FailedGA"] = 3800,
["Failed_verification"] = 18000,
["Fake_heading"] = 2200,
["Fake_heading/styles.css"] = 2200,
["Fake_link/styles.css"] = 2000,
["Family_name_explanation"] = 98000,
["Family_name_explanation/core"] = 98000,
["Family_name_footnote"] = 2200,
["Family_name_hatnote"] = 95000,
["Farl"] = 118000,
["Fb"] = 31000,
["Fb-rt"] = 6300,
["Fb_cs_footer"] = 3300,
["Fb_gd"] = 11000,
["Fb_overview"] = 6200,
["Fb_overview2"] = 5400,
["Fb_rs"] = 11000,
["Fb_rs_footer"] = 11000,
["Fba/core"] = 9000,
["Fba/list"] = 11000,
["Fbaicon"] = 11000,
["Fbaicon/core"] = 11000,
["Fbicon"] = 3600,
["Fbu"] = 4000,
["Fbu-rt"] = 2600,
["Fbw"] = 6100,
["Fdacite"] = 14000,
["Fdate"] = 2900,
["FeaturedPicture"] = 7400,
["Featured_article"] = 7300,
["Featured_article_tools"] = 12000,
["Featured_list"] = 4900,
["Featured_picture"] = 8800,
["Featured_topic_box"] = 3700,
["Featured_topic_box/styles.css"] = 3700,
["Feedback_link"] = 4600,
["Fiction-based_redirects_to_list_entries_category_handler"] = 3300,
["Fictional_character_redirect"] = 3900,
["File-Class"] = 13000,
["File_other"] = 995000,
["Filipino_name"] = 4400,
["Film_date"] = 166000,
["Filter_category_by_topic"] = 2800,
["Find"] = 8500,
["FindYDCportal"] = 222000,
["Find_a_Grave"] = 24000,
["Find_country"] = 44000,
["Find_demonym"] = 38000,
["Find_general_sources"] = 917000,
["Find_medical_sources"] = 8200,
["Find_page_text"] = 2790000,
["Find_sources"] = 623000,
["Find_sources/proj/is_biography"] = 608000,
["Find_sources/proj/is_med"] = 623000,
["Find_sources/proj/is_video"] = 615000,
["Find_sources/top_proj"] = 623000,
["Find_sources_AFD"] = 261000,
["Find_sources_mainspace"] = 714000,
["Find_video_game_sources"] = 6900,
["Find_video_game_sources_short"] = 3100,
["Findsources"] = 42000,
["First_word"] = 679000,
["FishBase"] = 20000,
["FishBase_genus"] = 4200,
["Fix"] = 1050000,
["Fix-span"] = 64000,
["Fix/category"] = 1020000,
["Fix_comma_category"] = 597000,
["Fixed"] = 10000,
["Fl."] = 3800,
["Flag"] = 345000,
["Flag/core"] = 345000,
["FlagCGFathlete"] = 2200,
["FlagIOC"] = 10000,
["FlagIOC2"] = 4700,
["FlagIOC2athlete"] = 6800,
["FlagIOC2team"] = 2900,
["FlagIOCathlete"] = 11000,
["FlagIPC"] = 3300,
["FlagPASO"] = 2100,
["FlagPASOathlete"] = 3300,
["Flag_CGF_athlete"] = 2400,
["Flag_IOC"] = 13000,
["Flag_IOC_2"] = 18000,
["Flag_IOC_2_athlete"] = 15000,
["Flag_IOC_2_medalist"] = 5000,
["Flag_IOC_2_team"] = 4400,
["Flag_IOC_athlete"] = 13000,
["Flag_IPC"] = 4000,
["Flag_PASO"] = 3000,
["Flag_PASO_athlete"] = 3500,
["Flag_athlete"] = 39000,
["Flag_country"] = 41000,
["Flag_country/core"] = 41000,
["Flag_data"] = 12000,
["Flag_decoration"] = 95000,
["Flag_decoration/core"] = 95000,
["Flag_icon"] = 616000,
["Flag_icon/core"] = 616000,
["Flag_icon/nt"] = 9700,
["Flag_link"] = 2100,
["Flag_link/core"] = 87000,
["Flag_medalist"] = 2800,
["Flag_medalist/core"] = 2800,
["Flag_team"] = 2900,
["Flagathlete"] = 31000,
["Flagbig"] = 5100,
["Flagbig/core"] = 8900,
["Flagcountry"] = 26000,
["Flagdeco"] = 61000,
["Flagg"] = 23000,
["Flagicon"] = 460000,
["Flagicon_image"] = 52000,
["Flagmedalist"] = 2800,
["Flagright/core"] = 26000,
["Flagteam"] = 2500,
["Flagu"] = 32000,
["Flagu/core"] = 32000,
["Flat_list"] = 7700,
["Flatlist"] = 2650000,
["Flcl"] = 118000,
["FloraBase"] = 6100,
["Floruit"] = 7700,
["Fmbox"] = 25000,
["FoP-USonly"] = 5200,
["Font"] = 12000,
["Font_color"] = 52000,
["Fontcolor"] = 6900,
["Fooian_companies_established_in_the_year"] = 5500,
["Fooian_expatriate_sportspeople_in_Bar_cat"] = 11000,
["Fooian_expatriate_sportspeople_in_Bar_cat/core"] = 11000,
["Fooian_expatriate_sportspeople_in_Bar_cat/sortname"] = 11000,
["Fooian_fooers"] = 14000,
["FootballFacts.ru"] = 6000,
["Football_box"] = 29000,
["Football_box_collapsible"] = 30000,
["Football_box_collapsible/styles.css"] = 30000,
["Football_kit"] = 54000,
["Football_manager_history"] = 23000,
["Football_squad"] = 45000,
["Football_squad2_player"] = 49000,
["Football_squad_end"] = 22000,
["Football_squad_manager"] = 46000,
["Football_squad_mid"] = 19000,
["Football_squad_player"] = 22000,
["Football_squad_player/role"] = 8200,
["Football_squad_player/styles.css"] = 22000,
["Football_squad_start"] = 22000,
["Footballbox"] = 5800,
["Footballbox_collapsible"] = 9000,
["Footballstats"] = 4100,
["Foo–Bar_relations_category"] = 6300,
["Foo–Bar_relations_category/core"] = 6300,
["Foo–Bar_relations_category/countrynamesortfix"] = 6300,
["Foo–Bar_relations_category/fixcountryname"] = 6300,
["Foo–Bar_relations_category/inner_core"] = 6300,
["Foo–Bar_relations_category/mapname"] = 6300,
["For"] = 209000,
["For-multi"] = 13000,
["For_loop"] = 1170000,
["For_multi"] = 7100,
["For_nowiki"] = 9500,
["ForaDeJogo"] = 4100,
["Force_plural"] = 17000,
["Force_singular"] = 2800,
["Format_link"] = 12000,
["Format_linkr"] = 7200,
["Format_numeric_span"] = 3800,
["Format_price"] = 8800,
["Format_price/digits"] = 8600,
["Formatprice"] = 4000,
["Fossil_range"] = 14000,
["Fossil_range/bar"] = 25000,
["Fossilrange"] = 6700,
["Foundational_Model_of_Anatomy"] = 3400,
["Frac"] = 35000,
["Fraction"] = 41000,
["Fraction/styles.css"] = 107000,
["France_metadata_Wikidata"] = 36000,
["Free_access"] = 5300,
["Free_in_US_media"] = 23000,
["Free_media"] = 138000,
["Freedom_of_panorama_(US_only)"] = 5300,
["Frequency"] = 7700,
["Friday"] = 2800,
["Fs_end"] = 20000,
["Fs_mid"] = 18000,
["Fs_player"] = 20000,
["Fs_start"] = 20000,
["Full-time_equivalent"] = 3200,
["Full_citation_needed"] = 10000,
["Full_party_name_with_color"] = 6200,
["Fullurl"] = 7000,
["Fullurl:"] = 6800,
["Further"] = 76000,
["Further_information"] = 2500,
["Fussballdaten"] = 4200,
["Module:Fb_overview"] = 6400,
["Module:Fba"] = 18000,
["Module:Fba/list"] = 36000,
["Module:FeaturedTopicSum"] = 6900,
["Module:Fedi-share"] = 3900,
["Module:Fiction-based_redirects_to_list_entries_category_handler"] = 3300,
["Module:Fiction-based_redirects_to_list_entries_category_handler/RedirectType"] = 3300,
["Module:Fiction_redirect_category_handler"] = 5200,
["Module:File_link"] = 89000,
["Module:FindYDCportal"] = 396000,
["Module:Find_country"] = 44000,
["Module:Find_demonym"] = 38000,
["Module:Find_sources"] = 1640000,
["Module:Find_sources/config"] = 1640000,
["Module:Find_sources/links"] = 1640000,
["Module:Find_sources/templates/Find_general_sources"] = 917000,
["Module:Find_sources/templates/Find_sources_mainspace"] = 714000,
["Module:Find_sources/templates/Find_sources_medical"] = 8300,
["Module:Find_sources/templates/Find_sources_video_games"] = 6900,
["Module:Flag"] = 373000,
["Module:Flag_list"] = 11000,
["Module:Flagg"] = 454000,
["Module:Flagg/Altvar_data"] = 33000,
["Module:Football_box"] = 30000,
["Module:Football_box/styles.css"] = 30000,
["Module:Football_box_collapsible"] = 30000,
["Module:Football_event"] = 55000,
["Module:Football_manager_history"] = 24000,
["Module:Football_squad"] = 46000,
["Module:Footballer_positions"] = 218000,
["Module:Footnotes"] = 364000,
["Module:Footnotes/anchor_id_list"] = 270000,
["Module:Footnotes/anchor_id_list/data"] = 270000,
["Module:Footnotes/whitelist"] = 270000,
["Module:For"] = 210000,
["Module:For_loop"] = 1170000,
["Module:For_nowiki"] = 9500,
["Module:Format_link"] = 1500000,
["Module:Formatted_appearance"] = 6000,
}
9895ihguxef31te48b3rb2oeiiuilbc
Omoworare Babajide
0
32023
670496
624156
2026-06-30T08:12:10Z
Vivian Amalachukwu
17172
Fixed reference error
670496
wikitext
text/x-wiki
{{Databox}}
'''Babajide Omoworare''' onye omeiwu Naijiria nochitere anya Osun East n'ụlọ ndị Omeiwu sịneetị site 6 Jun 2011 ruo 9 Jun 2019
Onye ọ nọchiri n'oche bụ Iyiola Omisore
Onye nọchiri ya bụ Francis Adenigba Fadahunsi
Onye òtù ụlọ nzukọ omeiwu Naijiria site na 3 Jun 1999 ruo 5 Jun 2007
Mpaghara ọ nochitere anya ha bụ Ifako-Ijaiye
==Ihe Gbasara Ya==
A mụrụ ya dika Babajide Christopher Omoworare n'abalị iri atọ na otu n'onwa Ọktoba afọ 1968 (ọ gbara afọ iri ise na anọ) na Ilesa, steeti Western (dịzi na steeti Osun ugbua)
'''Òtù Ndọrọ Ndọrọ Ọchịchị ya''' - All Progressives Congress (2013 ruo ugbua)
'''Òtù ndọrọ ndọrọ ọchịchị ndị ọzọ ọ Nọrọla na Ha'''
* Alliance for Democracy (1998–2006)
* Action Congress of Nigeria (2006–2013)
'''Ndị Metụtara Ya'''
* Adesoji Aderemi (Nna nna ya)
'''Agụmakwụkwọ'''
* Obafemi Awolowo University (LL.B.)
* [[University of Lagos]] (LL.M.)
* Nigeria Law School
'''Ọrụ Ya'''
* Onye ndọrọ ndọrọ ọchịchị
* Onye Ọkaiwu
{{Infobox officeholder|website=}}
'''Babajide Christopher Omoworare''' (amụrụ na 31 Ọktoba 1968) bụ onye ndọrọ ndọrọ ọchịchị Naijiria nke a họpụtara dị ka Senator maka Osun East na Eprel 2011, Ọ gbara ọsọ na ikpo okwu Action Congress of Nigeria (ACN). Babajide Christopher Omoworare Nigerian Action Congress of Nigeria A họpụtara ya ọzọ na Senate nke Naijiria na 28 Machị 2015 n'okpuru ikpo okwu nke All Progressive Congress (APC) ma Francis Adenigba Fadahunsi nke [[Peoples Democratic Party]] (PDP) nọchiri ya na June 2019. All Progressive Congress Peoples Democratic Party
== Ihe ndị mere n'oge gara aga ==
A mụrụ Babajide Christopher Omoworare na 31 Ọktoba 1968 na Ilesa, n'ezinụlọ si Ile-Ife, Ife Central Local Government Area nke Osun State. Ile-Ife Nna ya bụ onye isi ụlọ akwụkwọ grammar. Nna nne ya bụ Adesoji Aderemi bụ Gọvanọ nke Western Region na Naịjirịa First Republic. Adesoji Aderemi Naịjirịa Mbụ Omoworare gara [[Mahadum nke Obafemi Awolowo|Mahadum Obafemi Awolowo]], Ile-Ife, gụsịrị akwụkwọ na nzere bachelọ na iwu na 1989. Mahadum Obafemi Awolowo
Ọ gara n'ụlọ akwụkwọ iwu nke Nigeria, Lagos, a kpọkwara ya n'ụlọ ikpe Naịjirịa dị ka onye ọka iwu na onye ọka iwu nke Ụlọikpe Kasị Elu nke Naịjiria na 1990. Ụlọ Akwụkwọ Iwu Naịjirịa O nwetakwara nzere masta na Mahadum Lagos, Akoka. Mahadum nke Lagos Akoka
Omoworare malitere ịrụ ọrụ na ụlọ ọrụ iwu Lagos nke Babalakin & Co. 1991. Ọ ghọrọ onye na-ahụ maka ọha na eze ma hapụ Babalakin na Co. na 1998, mgbe ọ malitere ụlọ ọrụ iwu nke ya Omoworare & Co. wee kpebie ịbanye na ndọrọ ndọrọ ọchịchị.<ref name=self/>
== Ọrụ ndọrọ ndọrọ ọchịchị ==
Omoworare nwere ihe ịga nke ọma na ntuli aka maka mpaghara Ifako-Ijaiye nke Ụlọ Nzukọ nke Lagos na Jenụwarị 1999, na-agba ọsọ na Alliance for Democracy. Njikọ Maka Ọchịchị Onye kwuo uche ya A họpụtara ya ọzọ n'afọ 2003 wee bụrụ onye ndú na onye isi oche nke Kọmitii Iwu Azụmaahịa na Iwu Na-adịgide adịgide. Na ntuli aka mba nke Eprel 2007, ọ bụ onye na-azọ ọkwa onye omeiwu nke Osun East. Nzukọ Mgbasa Ozi
Nhọrọ ahụ mebiri site na mmejọ ntuli aka na ime ihe ike ma ụlọ ikpe mkpegharị ikpe, Ibadan wepụrụ ya n'ọnwa Ọktoba afọ 2009.
Omoworare na Action Congress na Osun Steeti jụrụ ntuli aka nke 23 Disemba 2009.<ref name=self/>
Na ntuli aka Eprel 2011 maka oche Osun East Senatorial, Omoworare nwetara votu 119,852, na-agba ọsọ na ikpo okwu Action Congress of Nigeria (ACN), n'ihu Senator Iyiola Omisore nke PDP onye nwetara votu 51,315. Iyiola Omisore Ọ bụ osote onye isi oche nke Kọmitii Senate na Federal Character and Intergovernmental Affairs (nke nwere ọrụ nlekọta n'okpuru ụfọdụ ụlọ ọrụ n'okpuru onye isi ala). Ọ bụkwa onye otu Kọmitii Senate ndị na-esonụ - Iwu na Azụmaahịa, Ikpe, Petroleum (Upstream), Ahụike na Egwuregwu. Ihe kachasị mkpa ọ lekwasịrị anya gụnyere mgbanwe iwu (gụnyere ikpe, ndị uwe ojii, na ụlọ mkpọrọ) na inye ndị ntorobịa ikike.
Dị ka onye omeiwu nke Federal Republic of Nigeria, Babajide Omoworare akwadowo iwu ise, nke gụnyere "Prison Decongestion Bill", nke na-echere ugbu a nkwenye onye isi ala ma na-akwado ọtụtụ iwu na mmegharị ndị ọzọ. Ọ rụzigharịrị ụlọ akwụkwọ na ụlọ nzukọ obodo, nye agụmakwụkwọ, kwado ụlọ ọgwụ ọrụ, nye ụmụ akwụkwọ dara ogbenye ụdị UTME na NECO, hazie ụlọ akwụkwọ oge okpomọkụ n'efu maka ụmụ akwụkwọ, Family Health Fairs n'efu, malite nhazi nke òtù azụmahịa n'ime ndị na-arụkọ ọrụ ọnụ, nye ndị na-akwado akụ na ụba na ego na ndị ntorobịa 25 n'ime mpaghara ahụ na mmemme mgbanwe na United States, kwadoro ndị ọchụnta ego ndị ọzọ na UKTI na Sheffiira, wdg.
Na mgbalị ya ịgakwuru ndị na-akwado ya, ọ na-enwe nzukọ ndị na-eme kwa ọnwa site n'otu Gọọmentị Obodo ruo na nke ọzọ n'ime Mpaghara Senatorial. Site n'oge ruo n'oge, ọ na-ewepụta AFARA, akwụkwọ akụkọ mpaghara. N'ịghọta nnọchiteanya ya dị mma na Senate nke Federal Republic of Nigeria na ntinye aka ndọrọ ndọrọ ọchịchị ya na mba ahụ, gọọmentị etiti nke Naịjirịa nyere ya National Honour na ọkwa nke Commander of the Order of the Niger (CON). Onye isi nke Order of the Niger
Senator Babajide Omoworare lụrụ di ma nwee ụmụ; ọ bụ onye otu, onye nlekọta, na onye nwe ọtụtụ òtù Chọọchị, klọb egwuregwu, òtù ọrụ ebere, na Community Development Associations. Ọ bụkwa onye na-abụghị onye isi nchịkwa nke ụfọdụ uru na uru na-abụghị uru.
<ref>{{cite web
|url=http://www.inecnigeria.org/downloads/?did=114
|publisher=INEC
|accessdate=2011-05-04
|title=Collated Senate results
|url-status=dead
|archiveurl=https://web.archive.org/web/20110419203046/http://www.inecnigeria.org/downloads/?did=114
|archivedate=2011-04-19
}}</ref>
== Edensibịa ==
{{Reflist|refs=<ref name=self>{{cite web
|url=http://babajideomoworare.com/about.html
|title=About Babajide Omoworare
|publisher=Christopher Omoworare Babajide
|accessdate=2011-05-05
|archive-url=https://web.archive.org/web/20110501120017/http://babajideomoworare.com/about.html
|archive-date=2011-05-01
|url-status=dead
|archivedate=2011-05-01
|archiveurl=https://web.archive.org/web/20110501120017/http://babajideomoworare.com/about.html
}}</ref>}}
{{DEFAULTSORT: Babajide, Omoworare}}
[[Òtù:Mmadụ ndi di ndụ]]
pdrcs7whjxvmum5xk301lw4cjn4lgzj
Module:High-use
828
62294
670311
501769
2026-06-13T03:27:55Z
Zackmann08
14653
updating approximate number of total pages. Per [[Special:Statistics]] today's count is 65,771,384.
670311
Scribunto
text/plain
require('strict')
local p = {}
local getArgs = require('Module:Arguments').getArgs
local _fetch = require('Module:Transclusion_count')._fetch -- _fetch looks at the 'demo' argument
local yesno = require('Module:Yesno')
local lang_obj = mw.getContentLanguage() -- this here because the language object is used multiple places in the module
local large_count_cutoff = 100000
local approx_num_total_pages = 65700000
local user_subpage_info_page = 'Wikipedia:User pages#SUB'
local sandbox_module_page = 'Module:Sandbox'
local system_messages_cat = 'Pages used in system messages needing protection'
local sandbox_word = 'sandbox'
local testcases_word = 'testcases'
local doc_word = 'doc'
local function count_from_args(args)
if tonumber(args.count) then -- check if function has already been used
return tonumber(args.count) -- early exit if so
end
local count
if yesno(args['fetch']) ~= false then
count = _fetch(args) -- fetch transclusion count
end
-- use explicitly-provided count when fetch fails
if count == nil and args[1] ~= nil and args[1] ~= '' then
-- convert local language number string to a number understandable by Lua
count = mw.ustring.gsub(args[1], '+$', '')
count = lang_obj:parseFormattedNumber(args[1])
end
-- in case someone writes a non-positive number
if count and count > 0 then
return count
end
return nil
end
-- Actions if there is a large (greater than or equal to 100,000) transclusion count
local function risk_boolean(args)
if args.risk == true or args.risk == false then
return args.risk
elseif args[1] == 'risk' then
return true
else
local count = count_from_args(args)
if count and count >= large_count_cutoff then
return true
end
end
return false
end
-- function retained for backwards compatibility
function p._risk(args)
return risk_boolean(args) and 'risk' or ''
end
-- function retained for backwards compatibility
function p.risk(frame)
return p._risk(getArgs(frame))
end
-- count and no_percent arguments retained for backwards compatibility
function p._num(args, count, no_percent)
if count == nil then
count = count_from_args(args)
end
args.count = count
args.risk = risk_boolean(args)
-- Build output string
local return_value = ''
if args.count == nil and args.risk then
return 'a very large number of'
elseif args.count == nil then
return 'many'
else
-- Use 2 significant figures for smaller numbers and 3 for larger ones
local sigfig = 2
if args.count >= large_count_cutoff then
sigfig = 3
end
-- Prepare to round to appropriate number of sigfigs
local f = math.floor(math.log10(args.count)) - sigfig + 1
-- Round and insert 'approximately' or '+' when appropriate
if yesno(args[2]) == true or (type(args[1]) == 'string' and (mw.ustring.sub(args[1], -1) == '+')) then
-- Round down
return_value = string.format('%s+', lang_obj:formatNum(math.floor( (args.count / 10^(f)) ) * (10^(f))) )
else
-- Round to nearest
return_value = string.format('approximately %s', lang_obj:formatNum(math.floor( (args.count / 10^(f)) + 0.5) * (10^(f))) )
end
-- Insert percentage of pages if that is likely to be >= 1% and when |no-percent= not set to yes
no_percent = yesno(no_percent or args['no-percent'])
if args.count and args.count >= approx_num_total_pages/100 and not no_percent then
local num_total_pages = mw.getCurrentFrame():callParserFunction('NUMBEROFPAGES', 'R')
local total_percent = math.floor( ( ( args.count/num_total_pages ) * 100) + 0.5)
if total_percent >= 1 then
return_value = string.format('%s pages, or roughly %s%% of all', return_value, total_percent)
end
end
end
return return_value
end
-- used by [[Template:Stub documentation]] and other pages
-- count argument retained for backwards compatibility
function p.num(frame, count)
return p._num(getArgs(frame), count)
end
-- count argument retained for backwards compatibility
function p._text(args, count)
--[=[
Only show the information about how this template gets updated
if someone is actually editing the page and maybe trying to update the count.
]=]
local bot_text = (mw.getCurrentFrame():preprocess('{{REVISIONID}}') == '') and ("\n\n----\n'''Preview message''':" .. ' Transclusion count updated automatically ([[Template:High-use/doc#Technical details|see documentation]]).') or ''
if count == nil then
count = count_from_args(args)
end
args.count = count
args.risk = risk_boolean(args)
-- trim /doc, /sandbox and /testcases
local title = args.title or (args.demo and args.demo ~= '' and mw.title.new(args.demo, 'Template')) or mw.title.getCurrentTitle()
if title.subpageText == doc_word or title.subpageText == sandbox_word or title.subpageText == testcases_word then
title = title.basePageTitle
end
-- use /testcases of base template
local testcases_page = mw.title.new(title.prefixedText .. '/' .. testcases_word)
-- exists is expensive
while testcases_page.basePageTitle.isSubpage and not testcases_page.exists do
testcases_page = mw.title.new(testcases_page.basePageTitle.basePageTitle.prefixedText .. '/' .. testcases_word)
end
local systemMessages = (args['system'] or '') ~= ''
-- This retrieves the project URL automatically to simplify localization.
local templateCount = ('on [https://linkcount.toolforge.org/?project=%s&page=%s#transclusions %s pages]'):format(
title:fullUrl():gsub('//(.-)/.*', '%1'),
mw.uri.encode(title.fullText), p._num(args))
local used_on_text = "'''This " .. (title:inNamespace('Module') and 'Lua module' or 'template') .. ' is used '
if systemMessages then
used_on_text = used_on_text .. args['system'] ..
((args.count and args.count > 2000) and ("''', and " .. templateCount) or ("'''"))
else
used_on_text = used_on_text .. templateCount .. "'''"
end
local sandbox_text = ('%s\'s [[%s/sandbox|/sandbox]] or [[%s|/testcases]] subpages, or in your own [[%s]]. '):format(
title:inNamespace('Module') and 'module' or 'template',
title.fullText,
testcases_page.fullText,
title:inNamespace('Module') and (sandbox_module_page .. '|module sandbox') or (user_subpage_info_page .. '|user subpage')
)
local infoArg = args['info'] ~= '' and args['info']
if (systemMessages or args.risk) then
local info = '.'
if systemMessages then
info = info .. '<br />Changes to it can cause immediate changes to the ' .. mw.site.namespaces.Project.name .. ' user interface.'
end
if infoArg then
info = info .. '<br />' .. infoArg
end
sandbox_text = info .. '<br /> To avoid major disruption' ..
(args.count and args.count >= large_count_cutoff and ' and server load' or '') .. -- should this use args.risk?
', any changes should be tested in the ' .. sandbox_text ..
'The tested changes can be added to this page in a single edit. '
else
sandbox_text = (infoArg and ('.<br />' .. infoArg .. ' C') or ' and c') ..
'hanges may be widely noticed. Test changes in the ' .. sandbox_text
end
local discussion_text = systemMessages and 'Please discuss changes ' or 'Consider discussing changes '
if args[2] ~= nil and args[2] ~= '' and yesno(args[2]) == nil then
discussion_text = string.format('%sat [[%s]]', discussion_text, args[2])
else
discussion_text = string.format('%son the [[%s|talk page]]', discussion_text, title.talkPageTitle.fullText)
end
return used_on_text .. sandbox_text .. discussion_text .. ' before implementing them.' .. bot_text
end
-- used by [[Template:R from high-use template]]
-- count argument retained for backwards compatibility
function p.text(frame, count)
return p._text(getArgs(frame), count)
end
-- nocat argument retained for backwards compatibility
function p._main(args, nocat)
args.count = count_from_args(args)
args.risk = risk_boolean(args)
args.title = (args.demo and args.demo ~= '' and mw.title.new(args.demo, 'Template')) or mw.title.getCurrentTitle()
local image = 'Ambox warning yellow.svg'
local type_param = 'style'
local epilogue = ''
if args['system'] and args['system'] ~= '' then
image = 'Ambox important.svg'
type_param = 'content'
if yesno(nocat or args['nocat']) ~= true and not args.title.isRedirect then
local protection_action = (args.title:inNamespace('File') and 'upload') or 'edit'
local protection_level = require('Module:Effective protection level')._main(protection_action, args.title.fullText)
if protection_level ~= 'sysop' and protection_level ~= 'templateeditor' and protection_level ~= 'interfaceadmin' then
epilogue = mw.getCurrentFrame():expandTemplate {
title = 'sandbox other',
args = {
[2] = '[[Category:' .. system_messages_cat .. ']]'
}
}
end
end
elseif args.risk then
image = 'Ambox warning orange.svg'
type_param = 'content'
end
image = '[[File:' .. image .. '|40px|alt=Warning|link=]]'
if args['form'] == 'editnotice' then
return mw.getCurrentFrame():expandTemplate{
title = 'editnotice',
args = {
['image'] = image,
['text'] = p._text(args),
['expiry'] = (args['expiry'] or '')
}
} .. epilogue
else
return require('Module:Message box').main('ombox', {
type = type_param,
image = image,
text = p._text(args),
expiry = (args['expiry'] or '')
}) .. epilogue
end
end
function p.main(frame)
return p._main(getArgs(frame))
end
return p
pgnzyi7fcgxxcdx8zcvenpw5okbsonv
670312
670311
2026-06-29T12:44:15Z
King ChristLike
13051
1 revision imported from [[:en:Module:High-use]]
670311
Scribunto
text/plain
require('strict')
local p = {}
local getArgs = require('Module:Arguments').getArgs
local _fetch = require('Module:Transclusion_count')._fetch -- _fetch looks at the 'demo' argument
local yesno = require('Module:Yesno')
local lang_obj = mw.getContentLanguage() -- this here because the language object is used multiple places in the module
local large_count_cutoff = 100000
local approx_num_total_pages = 65700000
local user_subpage_info_page = 'Wikipedia:User pages#SUB'
local sandbox_module_page = 'Module:Sandbox'
local system_messages_cat = 'Pages used in system messages needing protection'
local sandbox_word = 'sandbox'
local testcases_word = 'testcases'
local doc_word = 'doc'
local function count_from_args(args)
if tonumber(args.count) then -- check if function has already been used
return tonumber(args.count) -- early exit if so
end
local count
if yesno(args['fetch']) ~= false then
count = _fetch(args) -- fetch transclusion count
end
-- use explicitly-provided count when fetch fails
if count == nil and args[1] ~= nil and args[1] ~= '' then
-- convert local language number string to a number understandable by Lua
count = mw.ustring.gsub(args[1], '+$', '')
count = lang_obj:parseFormattedNumber(args[1])
end
-- in case someone writes a non-positive number
if count and count > 0 then
return count
end
return nil
end
-- Actions if there is a large (greater than or equal to 100,000) transclusion count
local function risk_boolean(args)
if args.risk == true or args.risk == false then
return args.risk
elseif args[1] == 'risk' then
return true
else
local count = count_from_args(args)
if count and count >= large_count_cutoff then
return true
end
end
return false
end
-- function retained for backwards compatibility
function p._risk(args)
return risk_boolean(args) and 'risk' or ''
end
-- function retained for backwards compatibility
function p.risk(frame)
return p._risk(getArgs(frame))
end
-- count and no_percent arguments retained for backwards compatibility
function p._num(args, count, no_percent)
if count == nil then
count = count_from_args(args)
end
args.count = count
args.risk = risk_boolean(args)
-- Build output string
local return_value = ''
if args.count == nil and args.risk then
return 'a very large number of'
elseif args.count == nil then
return 'many'
else
-- Use 2 significant figures for smaller numbers and 3 for larger ones
local sigfig = 2
if args.count >= large_count_cutoff then
sigfig = 3
end
-- Prepare to round to appropriate number of sigfigs
local f = math.floor(math.log10(args.count)) - sigfig + 1
-- Round and insert 'approximately' or '+' when appropriate
if yesno(args[2]) == true or (type(args[1]) == 'string' and (mw.ustring.sub(args[1], -1) == '+')) then
-- Round down
return_value = string.format('%s+', lang_obj:formatNum(math.floor( (args.count / 10^(f)) ) * (10^(f))) )
else
-- Round to nearest
return_value = string.format('approximately %s', lang_obj:formatNum(math.floor( (args.count / 10^(f)) + 0.5) * (10^(f))) )
end
-- Insert percentage of pages if that is likely to be >= 1% and when |no-percent= not set to yes
no_percent = yesno(no_percent or args['no-percent'])
if args.count and args.count >= approx_num_total_pages/100 and not no_percent then
local num_total_pages = mw.getCurrentFrame():callParserFunction('NUMBEROFPAGES', 'R')
local total_percent = math.floor( ( ( args.count/num_total_pages ) * 100) + 0.5)
if total_percent >= 1 then
return_value = string.format('%s pages, or roughly %s%% of all', return_value, total_percent)
end
end
end
return return_value
end
-- used by [[Template:Stub documentation]] and other pages
-- count argument retained for backwards compatibility
function p.num(frame, count)
return p._num(getArgs(frame), count)
end
-- count argument retained for backwards compatibility
function p._text(args, count)
--[=[
Only show the information about how this template gets updated
if someone is actually editing the page and maybe trying to update the count.
]=]
local bot_text = (mw.getCurrentFrame():preprocess('{{REVISIONID}}') == '') and ("\n\n----\n'''Preview message''':" .. ' Transclusion count updated automatically ([[Template:High-use/doc#Technical details|see documentation]]).') or ''
if count == nil then
count = count_from_args(args)
end
args.count = count
args.risk = risk_boolean(args)
-- trim /doc, /sandbox and /testcases
local title = args.title or (args.demo and args.demo ~= '' and mw.title.new(args.demo, 'Template')) or mw.title.getCurrentTitle()
if title.subpageText == doc_word or title.subpageText == sandbox_word or title.subpageText == testcases_word then
title = title.basePageTitle
end
-- use /testcases of base template
local testcases_page = mw.title.new(title.prefixedText .. '/' .. testcases_word)
-- exists is expensive
while testcases_page.basePageTitle.isSubpage and not testcases_page.exists do
testcases_page = mw.title.new(testcases_page.basePageTitle.basePageTitle.prefixedText .. '/' .. testcases_word)
end
local systemMessages = (args['system'] or '') ~= ''
-- This retrieves the project URL automatically to simplify localization.
local templateCount = ('on [https://linkcount.toolforge.org/?project=%s&page=%s#transclusions %s pages]'):format(
title:fullUrl():gsub('//(.-)/.*', '%1'),
mw.uri.encode(title.fullText), p._num(args))
local used_on_text = "'''This " .. (title:inNamespace('Module') and 'Lua module' or 'template') .. ' is used '
if systemMessages then
used_on_text = used_on_text .. args['system'] ..
((args.count and args.count > 2000) and ("''', and " .. templateCount) or ("'''"))
else
used_on_text = used_on_text .. templateCount .. "'''"
end
local sandbox_text = ('%s\'s [[%s/sandbox|/sandbox]] or [[%s|/testcases]] subpages, or in your own [[%s]]. '):format(
title:inNamespace('Module') and 'module' or 'template',
title.fullText,
testcases_page.fullText,
title:inNamespace('Module') and (sandbox_module_page .. '|module sandbox') or (user_subpage_info_page .. '|user subpage')
)
local infoArg = args['info'] ~= '' and args['info']
if (systemMessages or args.risk) then
local info = '.'
if systemMessages then
info = info .. '<br />Changes to it can cause immediate changes to the ' .. mw.site.namespaces.Project.name .. ' user interface.'
end
if infoArg then
info = info .. '<br />' .. infoArg
end
sandbox_text = info .. '<br /> To avoid major disruption' ..
(args.count and args.count >= large_count_cutoff and ' and server load' or '') .. -- should this use args.risk?
', any changes should be tested in the ' .. sandbox_text ..
'The tested changes can be added to this page in a single edit. '
else
sandbox_text = (infoArg and ('.<br />' .. infoArg .. ' C') or ' and c') ..
'hanges may be widely noticed. Test changes in the ' .. sandbox_text
end
local discussion_text = systemMessages and 'Please discuss changes ' or 'Consider discussing changes '
if args[2] ~= nil and args[2] ~= '' and yesno(args[2]) == nil then
discussion_text = string.format('%sat [[%s]]', discussion_text, args[2])
else
discussion_text = string.format('%son the [[%s|talk page]]', discussion_text, title.talkPageTitle.fullText)
end
return used_on_text .. sandbox_text .. discussion_text .. ' before implementing them.' .. bot_text
end
-- used by [[Template:R from high-use template]]
-- count argument retained for backwards compatibility
function p.text(frame, count)
return p._text(getArgs(frame), count)
end
-- nocat argument retained for backwards compatibility
function p._main(args, nocat)
args.count = count_from_args(args)
args.risk = risk_boolean(args)
args.title = (args.demo and args.demo ~= '' and mw.title.new(args.demo, 'Template')) or mw.title.getCurrentTitle()
local image = 'Ambox warning yellow.svg'
local type_param = 'style'
local epilogue = ''
if args['system'] and args['system'] ~= '' then
image = 'Ambox important.svg'
type_param = 'content'
if yesno(nocat or args['nocat']) ~= true and not args.title.isRedirect then
local protection_action = (args.title:inNamespace('File') and 'upload') or 'edit'
local protection_level = require('Module:Effective protection level')._main(protection_action, args.title.fullText)
if protection_level ~= 'sysop' and protection_level ~= 'templateeditor' and protection_level ~= 'interfaceadmin' then
epilogue = mw.getCurrentFrame():expandTemplate {
title = 'sandbox other',
args = {
[2] = '[[Category:' .. system_messages_cat .. ']]'
}
}
end
end
elseif args.risk then
image = 'Ambox warning orange.svg'
type_param = 'content'
end
image = '[[File:' .. image .. '|40px|alt=Warning|link=]]'
if args['form'] == 'editnotice' then
return mw.getCurrentFrame():expandTemplate{
title = 'editnotice',
args = {
['image'] = image,
['text'] = p._text(args),
['expiry'] = (args['expiry'] or '')
}
} .. epilogue
else
return require('Module:Message box').main('ombox', {
type = type_param,
image = image,
text = p._text(args),
expiry = (args['expiry'] or '')
}) .. epilogue
end
end
function p.main(frame)
return p._main(getArgs(frame))
end
return p
pgnzyi7fcgxxcdx8zcvenpw5okbsonv
Module:Location map
828
63314
670408
660153
2026-06-28T19:10:22Z
Zackmann08
14653
corrected parameter name
670408
Scribunto
text/plain
require('strict')
local p = {}
local getArgs = require('Module:Arguments').getArgs
local function round(n, decimals)
local pow = 10^(decimals or 0)
return math.floor(n * pow + 0.5) / pow
end
function p.getMapParams(map, frame)
if not map then
error('The name of the location map definition to use must be specified', 2)
end
local moduletitle = mw.title.new('Module:Location map/data/' .. map)
if not moduletitle then
error(string.format('%q is not a valid name for a location map definition', map), 2)
elseif moduletitle.exists then
local mapData = mw.loadData('Module:Location map/data/' .. map)
return function(name, params)
if name == nil then
return 'Module:Location map/data/' .. map
elseif mapData[name] == nil then
return ''
elseif params then
return mw.message.newRawMessage(tostring(mapData[name]), unpack(params)):plain()
else
return mapData[name]
end
end
else
error('Unable to find the specified location map definition: "Module:Location map/data/' .. map .. '" does not exist', 2)
end
end
function p.data(frame, args, map)
if not args then
args = getArgs(frame, {frameOnly = true})
end
if not map then
map = p.getMapParams(args[1], frame)
end
local params = {}
for k,v in ipairs(args) do
if k > 2 then
params[k-2] = v
end
end
return map(args[2], #params ~= 0 and params)
end
local hemisphereMultipliers = {
longitude = { W = -1, w = -1, E = 1, e = 1 },
latitude = { S = -1, s = -1, N = 1, n = 1 }
}
local function decdeg(degrees, minutes, seconds, hemisphere, decimal, direction)
if decimal then
if degrees then
error('Decimal and DMS degrees cannot both be provided for ' .. direction, 2)
elseif minutes then
error('Minutes can only be provided with DMS degrees for ' .. direction, 2)
elseif seconds then
error('Seconds can only be provided with DMS degrees for ' .. direction, 2)
elseif hemisphere then
error('A hemisphere can only be provided with DMS degrees for ' .. direction, 2)
end
local retval = tonumber(decimal)
if retval then
return retval
end
error('The value "' .. decimal .. '" provided for ' .. direction .. ' is not valid', 2)
elseif seconds and not minutes then
error('Seconds were provided for ' .. direction .. ' without minutes also being provided', 2)
elseif not degrees then
if minutes then
error('Minutes were provided for ' .. direction .. ' without degrees also being provided', 2)
elseif hemisphere then
error('A hemisphere was provided for ' .. direction .. ' without degrees also being provided', 2)
end
return nil
end
decimal = tonumber(degrees)
if not decimal then
error('The degree value "' .. degrees .. '" provided for ' .. direction .. ' is not valid', 2)
elseif minutes and not tonumber(minutes) then
error('The minute value "' .. minutes .. '" provided for ' .. direction .. ' is not valid', 2)
elseif seconds and not tonumber(seconds) then
error('The second value "' .. seconds .. '" provided for ' .. direction .. ' is not valid', 2)
end
decimal = decimal + (minutes or 0)/60 + (seconds or 0)/3600
if hemisphere then
local multiplier = hemisphereMultipliers[direction][hemisphere]
if not multiplier then
error('The hemisphere "' .. hemisphere .. '" provided for ' .. direction .. ' is not valid', 2)
end
decimal = decimal * multiplier
end
return decimal
end
-- Finds a parameter in a transclusion of {{Coord}}.
local function coord2text(para,coord) -- this should be changed for languages which do not use Arabic numerals or the degree sign
local lat, long = mw.ustring.match(coord,'<span class="p%-latitude latitude">([^<]+)</span><span class="p%-longitude longitude">([^<]+)</span>')
if lat then
return tonumber(para == 'longitude' and long or lat)
end
local result = mw.text.split(mw.ustring.match(coord,'%-?[%.%d]+°[NS] %-?[%.%d]+°[EW]') or '', '[ °]')
if para == 'longitude' then result = {result[3], result[4]} end
if not tonumber(result[1]) or not result[2] then
mw.log('Malformed coordinates value')
mw.logObject(para, 'para')
mw.logObject(coord, 'coord')
return error('Malformed coordinates value', 2)
end
return tonumber(result[1]) * hemisphereMultipliers[para][result[2]]
end
-- effectively make removeBlanks false for caption and maplink, and true for everything else
-- if useWikidata is present but blank, convert it to false instead of nil
-- p.top, p.bottom, and their callers need to use this
function p.valueFunc(key, value)
if value then
value = mw.text.trim(value)
end
if value ~= '' or key == 'caption' or key == 'maplink' then
return value
elseif key == 'useWikidata' then
return false
end
end
local function getContainerImage(args, map)
if args.AlternativeMap then
return args.AlternativeMap
elseif args.relief then
local digits = mw.ustring.match(args.relief,'^[1-9][0-9]?$') or '1' -- image1 to image99
if map('image' .. digits) ~= '' then
return map('image' .. digits)
end
end
return map('image')
end
function p.top(frame, args, map)
if not args then
args = getArgs(frame, {frameOnly = true, valueFunc = p.valueFunc})
end
if not map then
map = p.getMapParams(args[1], frame)
end
local width
local default_as_number = tonumber(mw.ustring.match(tostring(args.default_width),"%d*"))
if not args.width then
width = round((default_as_number or 240) * (tonumber(map('defaultscale')) or 1))
elseif mw.ustring.sub(args.width, -2) == 'px' then
width = mw.ustring.sub(args.width, 1, -3)
else
width = args.width
end
local width_as_number = tonumber(mw.ustring.match(tostring(width),"%d*")) or 0;
if width_as_number == 0 then
-- check to see if width is junk. If it is, then use default calculation
width = round((default_as_number or 240) * (tonumber(map('defaultscale')) or 1))
width_as_number = tonumber(mw.ustring.match(tostring(width),"%d*")) or 0;
end
if args.max_width ~= "" and args.max_width ~= nil then
-- check to see if width bigger than max_width
local max_as_number = tonumber(mw.ustring.match(args.max_width,"%d*")) or 0;
if width_as_number>max_as_number and max_as_number>0 then
width = args.max_width;
end
end
local retval = frame:extensionTag{name = 'templatestyles', args = {src = 'Module:Location map/styles.css'}}
if args.float == 'center' then
retval = retval .. '<div class="center">'
end
if args.caption and args.caption ~= '' and args.border ~= 'infobox' then
retval = retval .. '<div class="locmap noresize thumb '
if args.float == '"left"' or args.float == 'left' then
retval = retval .. 'floatleft'
elseif args.float == '"center"' or args.float == 'center' or args.float == '"none"' or args.float == 'none' then
retval = retval .. 'tnone'
else
retval = retval .. 'floatright'
end
retval = retval .. '"><div class="thumbinner" style="width:' .. (width + 2) .. 'px'
if args.border == 'none' then
retval = retval .. ';border:none'
elseif args.border then
retval = retval .. ';border-color:' .. args.border
end
retval = retval .. '"><div style="position:relative;width:' .. width .. 'px' .. (args.border ~= 'none' and ';border:1px solid lightgray">' or '">')
else
retval = retval .. '<div class="locmap" style="width:' .. width .. 'px;'
if args.float == '"left"' or args.float == 'left' then
retval = retval .. 'float:left;clear:left'
elseif args.float == '"center"' or args.float == 'center' then
retval = retval .. 'float:none;clear:both;margin-left:auto;margin-right:auto'
elseif args.float == '"none"' or args.float == 'none' then
retval = retval .. 'float:none;clear:none'
else
retval = retval .. 'float:right;clear:right'
end
retval = retval .. '"><div style="width:' .. width .. 'px;padding:0"><div style="position:relative;width:' .. width .. 'px">'
end
local image = getContainerImage(args, map)
local currentTitle = mw.title.getCurrentTitle()
retval = string.format(
'%s[[File:%s|%spx|%s%s|class=notpageimage noviewer]]',
retval,
image,
width,
args.alt or ((args.label or currentTitle.text) .. ' is located in ' .. map('name')),
args.maplink and ('|link=' .. args.maplink) or ''
)
if args.caption and args.caption ~= '' then
if (currentTitle.namespace == 0) and mw.ustring.find(args.caption, '##') then
retval = retval .. '[[Category:Pages using location map with a double number sign in the caption]]'
end
end
if args.overlay_image then
return retval .. '<div style="position:absolute;top:0;left:0">[[File:' .. args.overlay_image .. '|' .. width .. 'px|class=notpageimage noviewer]]</div>'
else
return retval
end
end
function p.bottom(frame, args, map)
if not args then
args = getArgs(frame, {frameOnly = true, valueFunc = p.valueFunc})
end
if not map then
map = p.getMapParams(args[1], frame)
end
local retval = '</div>'
local currentTitle = mw.title.getCurrentTitle()
if not args.caption or args.border == 'infobox' then
if args.border then
retval = retval .. '<div style="padding-top:0.2em">'
else
retval = retval .. '<div style="font-size:91%;padding-top:3px">'
end
retval = retval
.. (args.caption or (args.label or currentTitle.text) .. ' (' .. map('name') .. ')')
.. '</div>'
elseif args.caption ~= '' then
-- This is not the pipe trick. We're creating a link with no text on purpose, so that CSS can give us a nice image
retval = retval .. '<div class="thumbcaption"><div class="magnify">[[:File:' .. getContainerImage(args, map) .. '| ]]</div>' .. args.caption .. '</div>'
end
if args.switcherLabel then
retval = retval .. '<span class="switcher-label" style="display:none">' .. args.switcherLabel .. '</span>'
elseif args.autoSwitcherLabel then
retval = retval .. '<span class="switcher-label" style="display:none">Show map of ' .. map('name') .. '</span>'
end
retval = retval .. '</div></div>'
if args.caption_undefined then
mw.log('Removed parameter caption_undefined used.')
local parent = frame:getParent()
if parent then
mw.log('Parent is ' .. parent:getTitle())
end
mw.logObject(args, 'args')
if currentTitle.namespace == 0 then
retval = retval .. '[[Category:Location maps with removed parameters|caption_undefined]]'
end
end
if map('skew') ~= '' or map('lat_skew') ~= '' or map('crosses180') ~= '' or map('type') ~= '' then
mw.log('Removed parameter used in map definition ' .. map())
if currentTitle.namespace == 0 then
local key = (map('skew') ~= '' and 'skew' or '') ..
(map('lat_skew') ~= '' and 'lat_skew' or '') ..
(map('crosses180') ~= '' and 'crosses180' or '') ..
(map('type') ~= '' and 'type' or '')
retval = retval .. '[[Category:Location maps with removed parameters|' .. key .. ' ]]'
end
end
if string.find(map('name'), '|', 1, true) then
mw.log('Pipe used in name of map definition ' .. map())
if currentTitle.namespace == 0 then
retval = retval .. '[[Category:Location maps with a name containing a pipe]]'
end
end
if args.float == 'center' then
retval = retval .. '</div>'
end
return retval
end
local function markOuterDiv(x, y, imageDiv, labelDiv, label_size)
return mw.html.create('div')
:addClass('od')
:addClass('notheme') -- T236137
:cssText('top:' .. round(y, 3) .. '%;left:' .. round(x, 3) .. '%;font-size:' .. label_size .. '%')
:node(imageDiv)
:node(labelDiv)
end
local function markImageDiv(mark, marksize, label, link, alt, title)
local builder = mw.html.create('div')
:addClass('id')
:cssText('left:-' .. round(marksize / 2) .. 'px;top:-' .. round(marksize / 2) .. 'px')
:attr('title', title)
if marksize ~= 0 then
builder:wikitext(string.format(
'[[File:%s|%dx%dpx|%s|link=%s%s|class=notpageimage noviewer]]',
mark,
marksize,
marksize,
label,
link,
alt and ('|alt=' .. alt) or ''
))
end
return builder
end
local function markLabelDiv(label, label_size, label_width, position, background, x, marksize)
if tonumber(label_size) == 0 then
return mw.html.create('div'):addClass('l0'):wikitext(label)
end
local builder = mw.html.create('div')
:cssText('width:' .. label_width .. 'em')
local distance = round(marksize / 2 + 1)
if position == 'top' then -- specified top
builder:addClass('pv'):cssText('bottom:' .. distance .. 'px;left:' .. (-label_width / 2) .. 'em')
elseif position == 'bottom' then -- specified bottom
builder:addClass('pv'):cssText('top:' .. distance .. 'px;left:' .. (-label_width / 2) .. 'em')
elseif position == 'left' or (tonumber(x) > 70 and position ~= 'right') then -- specified left or autodetected to left
builder:addClass('pl'):cssText('right:' .. distance .. 'px')
else -- specified right or autodetected to right
builder:addClass('pr'):cssText('left:' .. distance .. 'px')
end
builder = builder:tag('div')
:wikitext(label)
if background then
builder:cssText('background-color:' .. background)
end
return builder:done()
end
local function getX(longitude, left, right)
local width = (right - left) % 360
if width == 0 then
width = 360
end
local distanceFromLeft = (longitude - left) % 360
-- the distance needed past the map to the right equals distanceFromLeft - width. the distance needed past the map to the left equals 360 - distanceFromLeft. to minimize page stretching, go whichever way is shorter
if distanceFromLeft - width / 2 >= 180 then
distanceFromLeft = distanceFromLeft - 360
end
return 100 * distanceFromLeft / width
end
local function getY(latitude, top, bottom)
return 100 * (top - latitude) / (top - bottom)
end
function p.mark(frame, args, map)
if not args then
args = getArgs(frame, {wrappers = 'Template:Location map~'})
end
local mapnames = {}
if not map then
if args[1] then
map = {}
for mapname in mw.text.gsplit(args[1], '#', true) do
map[#map + 1] = p.getMapParams(mw.ustring.gsub(mapname, '^%s*(.-)%s*$', '%1'), frame)
mapnames[#mapnames + 1] = mapname
end
if #map == 1 then map = map[1] end
else
map = p.getMapParams('World', frame)
args[1] = 'World'
end
end
if type(map) == 'table' then
local outputs = {}
local oldargs = args[1]
for k,v in ipairs(map) do
args[1] = mapnames[k]
outputs[k] = tostring(p.mark(frame, args, v))
end
args[1] = oldargs
return table.concat(outputs, '#PlaceList#') .. '#PlaceList#'
end
local x, y, longitude, latitude
longitude = decdeg(args.lon_deg, args.lon_min, args.lon_sec, args.lon_dir, args.long, 'longitude')
latitude = decdeg(args.lat_deg, args.lat_min, args.lat_sec, args.lat_dir, args.lat, 'latitude')
if args.excludefrom then
-- If this mark is to be excluded from certain maps entirely (useful in the context of multiple maps)
for exclusionmap in mw.text.gsplit(args.excludefrom, '#', true) do
-- Check if this map is excluded. If so, return an empty string.
if args[1] == exclusionmap then
return ''
end
end
end
local builder = mw.html.create()
local currentTitle = mw.title.getCurrentTitle()
if args.coordinates then
-- Temporarily removed to facilitate infobox conversion. See [[Wikipedia:Coordinates in infoboxes]]
-- if longitude or latitude then
-- error('Coordinates from [[Module:Coordinates]] and individual coordinates cannot both be provided')
-- end
longitude = coord2text('longitude', args.coordinates)
latitude = coord2text('latitude', args.coordinates)
elseif not longitude and not latitude and args.useWikidata then
-- If they didn't provide either coordinate, try Wikidata. If they provided one but not the other, don't.
local entity = mw.wikibase.getEntity()
if entity and entity.claims and entity.claims.P625 and entity.claims.P625[1].mainsnak.snaktype == 'value' then
local value = entity.claims.P625[1].mainsnak.datavalue.value
longitude, latitude = value.longitude, value.latitude
end
if args.link and (currentTitle.namespace == 0) then
builder:wikitext('[[Category:Location maps with linked markers with coordinates from Wikidata]]')
end
end
if not longitude then
error('No value was provided for longitude')
elseif not latitude then
error('No value was provided for latitude')
end
if currentTitle.namespace > 0 then
if (not args.lon_deg) ~= (not args.lat_deg) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Degrees]]')
elseif (not args.lon_min) ~= (not args.lat_min) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Minutes]]')
elseif (not args.lon_sec) ~= (not args.lat_sec) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Seconds]]')
elseif (not args.lon_dir) ~= (not args.lat_dir) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Hemisphere]]')
elseif (not args.long) ~= (not args.lat) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Decimal]]')
end
end
if ((tonumber(args.lat_deg) or 0) < 0) and ((tonumber(args.lat_min) or 0) ~= 0 or (tonumber(args.lat_sec) or 0) ~= 0 or (args.lat_dir and args.lat_dir ~='')) then
builder:wikitext('[[Category:Location maps with negative degrees and minutes or seconds]]')
end
if ((tonumber(args.lon_deg) or 0) < 0) and ((tonumber(args.lon_min) or 0) ~= 0 or (tonumber(args.lon_sec) or 0) ~= 0 or (args.lon_dir and args.lon_dir ~= '')) then
builder:wikitext('[[Category:Location maps with negative degrees and minutes or seconds]]')
end
if (((tonumber(args.lat_min) or 0) < 0) or ((tonumber(args.lat_sec) or 0) < 0)) then
builder:wikitext('[[Category:Location maps with negative degrees and minutes or seconds]]')
end
if (((tonumber(args.lon_min) or 0) < 0) or ((tonumber(args.lon_sec) or 0) < 0)) then
builder:wikitext('[[Category:Location maps with negative degrees and minutes or seconds]]')
end
if args.skew or args.lon_shift or args.markhigh then
mw.log('Removed parameter used in invocation.')
local parent = frame:getParent()
if parent then
mw.log('Parent is ' .. parent:getTitle())
end
mw.logObject(args, 'args')
if currentTitle.namespace == 0 then
local key = (args.skew and 'skew' or '') ..
(args.lon_shift and 'lon_shift' or '') ..
(args.markhigh and 'markhigh' or '')
builder:wikitext('[[Category:Location maps with removed parameters|' .. key ..' ]]')
end
end
if map('x') ~= '' then
x = tonumber(mw.ext.ParserFunctions.expr(map('x', { latitude, longitude })))
else
x = tonumber(getX(longitude, map('left'), map('right')))
end
if map('y') ~= '' then
y = tonumber(mw.ext.ParserFunctions.expr(map('y', { latitude, longitude })))
else
y = tonumber(getY(latitude, map('top'), map('bottom')))
end
if (x < 0 or x > 100 or y < 0 or y > 100) and not args.outside then
mw.log('Mark placed outside map boundaries without outside flag set. x = ' .. x .. ', y = ' .. y)
local parent = frame:getParent()
if parent then
mw.log('Parent is ' .. parent:getTitle())
end
mw.logObject(args, 'args')
if currentTitle.namespace == 0 then
local key = currentTitle.prefixedText
builder:wikitext('[[Category:Location maps with marks outside map and outside parameter not set|' .. key .. ' ]]')
end
end
local mark = args.mark or map('mark')
if mark == '' then
mark = 'Red pog.svg'
end
local marksize = tonumber(args.marksize) or tonumber(map('marksize')) or 8
local imageDiv = markImageDiv(mark, marksize, args.label or mw.title.getCurrentTitle().text, args.link or '', args.alt, args[2])
local label_size = args.label_size or 91
local labelDiv
if args.label and args.position ~= 'none' then
labelDiv = markLabelDiv(args.label, label_size, args.label_width or 6, args.position, args.background, x, marksize)
end
return builder:node(markOuterDiv(x, y, imageDiv, labelDiv, label_size))
end
local function switcherSeparate(s)
if s == nil then return {} end
local retval = {}
for i in string.gmatch(s .. '#', '([^#]*)#') do
i = mw.text.trim(i)
retval[#retval + 1] = (i ~= '' and i)
end
return retval
end
function p.infobox_pushpin_map(frame)
local raw_args = getArgs(frame)
local parsed_args = {}
--If no map is supplied, return.
if not raw_args['pushpin_map'] then
return
end
-- Parse the raw arguments
parsed_args[1] = raw_args['pushpin_map']
parsed_args.float = 'center'
parsed_args.border = 'infobox'
parsed_args.coordinates = raw_args['coordinates']
parsed_args.caption = raw_args['pushpin_caption']
parsed_args.relief = raw_args['pushpin_relief']
parsed_args.label = raw_args['pushpin_label']
parsed_args.label_size = raw_args['pushpin_label_size']
parsed_args.position = raw_args['pushpin_label_position']
parsed_args.mark = raw_args['pushpin_mark']
parsed_args.marksize = raw_args['pushpin_mark_size']
parsed_args.alt = raw_args['pushpin_alt']
parsed_args.background = raw_args['pushpin_background']
parsed_args.width = raw_args['pushpin_map_size']
local map = {}
local caption_list = {}
for mapname in string.gmatch(parsed_args[1], '[^#]+') do
map[#map + 1] = p.getMapParams(mw.ustring.gsub(mapname, '^%s*(.-)%s*$', '%1'), frame)
end
if parsed_args['caption'] then
for caption in mw.text.gsplit(parsed_args['caption'], '##', true) do
caption_list[#caption_list + 1] = caption
end
end
if #map == 1 then
map = map[1]
if not parsed_args.caption then
parsed_args.caption = 'Location within ' .. map('name')
end
end
if type(map) == 'table' then
mw.log('----')
mw.logObject(map)
if #caption_list > #map then
error(string.format('%d captions were provided, but only %d maps were provided', #caption_list, #map))
elseif not parsed_args.caption then
-- Set a default caption for each of the multiple maps
for i=1, #map do
caption_list[#caption_list + 1] = 'Location within '.. map[i]('name')
end
end
local outputs = {}
parsed_args.autoSwitcherLabel = true
for k,v in ipairs(map) do
parsed_args.caption = caption_list[k]
outputs[k] = p.main(frame, parsed_args, v)
end
return '<div class="switcher-container">' .. table.concat(outputs) .. '</div>'
else
return p.top(frame, parsed_args, map) .. tostring( p.mark(frame, parsed_args, map) ) .. p.bottom(frame, parsed_args, map)
end
end
function p.main(frame, args, map)
local caption_list = {}
if not args then
args = getArgs(frame, {wrappers = 'Template:Location map', valueFunc = p.valueFunc})
end
if args.useWikidata == nil then
args.useWikidata = true
end
if not map then
if args[1] then
map = {}
for mapname in string.gmatch(args[1], '[^#]+') do
map[#map + 1] = p.getMapParams(mw.ustring.gsub(mapname, '^%s*(.-)%s*$', '%1'), frame)
end
if args['caption'] then
if args['caption'] == "" then
while #caption_list < #map do
caption_list[#caption_list + 1] = args['caption']
end
else
for caption in mw.text.gsplit(args['caption'], '##', true) do
caption_list[#caption_list + 1] = caption
end
end
end
if #map == 1 then map = map[1] end
else
map = p.getMapParams('World', frame)
end
end
if type(map) == 'table' then
local altmaps = switcherSeparate(args.AlternativeMap)
if #altmaps > #map then
error(string.format('%d AlternativeMaps were provided, but only %d maps were provided', #altmaps, #map))
end
local overlays = switcherSeparate(args.overlay_image)
if #overlays > #map then
error(string.format('%d overlay_images were provided, but only %d maps were provided', #overlays, #map))
end
if #caption_list > #map then
error(string.format('%d captions were provided, but only %d maps were provided', #caption_list, #map))
end
local outputs = {}
args.autoSwitcherLabel = true
for k,v in ipairs(map) do
args.AlternativeMap = altmaps[k]
args.overlay_image = overlays[k]
args.caption = caption_list[k]
outputs[k] = p.main(frame, args, v)
end
return '<div class="switcher-container">' .. table.concat(outputs) .. '</div>'
else
return p.top(frame, args, map) .. tostring( p.mark(frame, args, map) ) .. p.bottom(frame, args, map)
end
end
return p
7qlw0ix88lq10u4ocv0qw91tx09rjxy
670409
670408
2026-06-29T12:45:29Z
King ChristLike
13051
1 revision imported from [[:en:Module:Location_map]]
670408
Scribunto
text/plain
require('strict')
local p = {}
local getArgs = require('Module:Arguments').getArgs
local function round(n, decimals)
local pow = 10^(decimals or 0)
return math.floor(n * pow + 0.5) / pow
end
function p.getMapParams(map, frame)
if not map then
error('The name of the location map definition to use must be specified', 2)
end
local moduletitle = mw.title.new('Module:Location map/data/' .. map)
if not moduletitle then
error(string.format('%q is not a valid name for a location map definition', map), 2)
elseif moduletitle.exists then
local mapData = mw.loadData('Module:Location map/data/' .. map)
return function(name, params)
if name == nil then
return 'Module:Location map/data/' .. map
elseif mapData[name] == nil then
return ''
elseif params then
return mw.message.newRawMessage(tostring(mapData[name]), unpack(params)):plain()
else
return mapData[name]
end
end
else
error('Unable to find the specified location map definition: "Module:Location map/data/' .. map .. '" does not exist', 2)
end
end
function p.data(frame, args, map)
if not args then
args = getArgs(frame, {frameOnly = true})
end
if not map then
map = p.getMapParams(args[1], frame)
end
local params = {}
for k,v in ipairs(args) do
if k > 2 then
params[k-2] = v
end
end
return map(args[2], #params ~= 0 and params)
end
local hemisphereMultipliers = {
longitude = { W = -1, w = -1, E = 1, e = 1 },
latitude = { S = -1, s = -1, N = 1, n = 1 }
}
local function decdeg(degrees, minutes, seconds, hemisphere, decimal, direction)
if decimal then
if degrees then
error('Decimal and DMS degrees cannot both be provided for ' .. direction, 2)
elseif minutes then
error('Minutes can only be provided with DMS degrees for ' .. direction, 2)
elseif seconds then
error('Seconds can only be provided with DMS degrees for ' .. direction, 2)
elseif hemisphere then
error('A hemisphere can only be provided with DMS degrees for ' .. direction, 2)
end
local retval = tonumber(decimal)
if retval then
return retval
end
error('The value "' .. decimal .. '" provided for ' .. direction .. ' is not valid', 2)
elseif seconds and not minutes then
error('Seconds were provided for ' .. direction .. ' without minutes also being provided', 2)
elseif not degrees then
if minutes then
error('Minutes were provided for ' .. direction .. ' without degrees also being provided', 2)
elseif hemisphere then
error('A hemisphere was provided for ' .. direction .. ' without degrees also being provided', 2)
end
return nil
end
decimal = tonumber(degrees)
if not decimal then
error('The degree value "' .. degrees .. '" provided for ' .. direction .. ' is not valid', 2)
elseif minutes and not tonumber(minutes) then
error('The minute value "' .. minutes .. '" provided for ' .. direction .. ' is not valid', 2)
elseif seconds and not tonumber(seconds) then
error('The second value "' .. seconds .. '" provided for ' .. direction .. ' is not valid', 2)
end
decimal = decimal + (minutes or 0)/60 + (seconds or 0)/3600
if hemisphere then
local multiplier = hemisphereMultipliers[direction][hemisphere]
if not multiplier then
error('The hemisphere "' .. hemisphere .. '" provided for ' .. direction .. ' is not valid', 2)
end
decimal = decimal * multiplier
end
return decimal
end
-- Finds a parameter in a transclusion of {{Coord}}.
local function coord2text(para,coord) -- this should be changed for languages which do not use Arabic numerals or the degree sign
local lat, long = mw.ustring.match(coord,'<span class="p%-latitude latitude">([^<]+)</span><span class="p%-longitude longitude">([^<]+)</span>')
if lat then
return tonumber(para == 'longitude' and long or lat)
end
local result = mw.text.split(mw.ustring.match(coord,'%-?[%.%d]+°[NS] %-?[%.%d]+°[EW]') or '', '[ °]')
if para == 'longitude' then result = {result[3], result[4]} end
if not tonumber(result[1]) or not result[2] then
mw.log('Malformed coordinates value')
mw.logObject(para, 'para')
mw.logObject(coord, 'coord')
return error('Malformed coordinates value', 2)
end
return tonumber(result[1]) * hemisphereMultipliers[para][result[2]]
end
-- effectively make removeBlanks false for caption and maplink, and true for everything else
-- if useWikidata is present but blank, convert it to false instead of nil
-- p.top, p.bottom, and their callers need to use this
function p.valueFunc(key, value)
if value then
value = mw.text.trim(value)
end
if value ~= '' or key == 'caption' or key == 'maplink' then
return value
elseif key == 'useWikidata' then
return false
end
end
local function getContainerImage(args, map)
if args.AlternativeMap then
return args.AlternativeMap
elseif args.relief then
local digits = mw.ustring.match(args.relief,'^[1-9][0-9]?$') or '1' -- image1 to image99
if map('image' .. digits) ~= '' then
return map('image' .. digits)
end
end
return map('image')
end
function p.top(frame, args, map)
if not args then
args = getArgs(frame, {frameOnly = true, valueFunc = p.valueFunc})
end
if not map then
map = p.getMapParams(args[1], frame)
end
local width
local default_as_number = tonumber(mw.ustring.match(tostring(args.default_width),"%d*"))
if not args.width then
width = round((default_as_number or 240) * (tonumber(map('defaultscale')) or 1))
elseif mw.ustring.sub(args.width, -2) == 'px' then
width = mw.ustring.sub(args.width, 1, -3)
else
width = args.width
end
local width_as_number = tonumber(mw.ustring.match(tostring(width),"%d*")) or 0;
if width_as_number == 0 then
-- check to see if width is junk. If it is, then use default calculation
width = round((default_as_number or 240) * (tonumber(map('defaultscale')) or 1))
width_as_number = tonumber(mw.ustring.match(tostring(width),"%d*")) or 0;
end
if args.max_width ~= "" and args.max_width ~= nil then
-- check to see if width bigger than max_width
local max_as_number = tonumber(mw.ustring.match(args.max_width,"%d*")) or 0;
if width_as_number>max_as_number and max_as_number>0 then
width = args.max_width;
end
end
local retval = frame:extensionTag{name = 'templatestyles', args = {src = 'Module:Location map/styles.css'}}
if args.float == 'center' then
retval = retval .. '<div class="center">'
end
if args.caption and args.caption ~= '' and args.border ~= 'infobox' then
retval = retval .. '<div class="locmap noresize thumb '
if args.float == '"left"' or args.float == 'left' then
retval = retval .. 'floatleft'
elseif args.float == '"center"' or args.float == 'center' or args.float == '"none"' or args.float == 'none' then
retval = retval .. 'tnone'
else
retval = retval .. 'floatright'
end
retval = retval .. '"><div class="thumbinner" style="width:' .. (width + 2) .. 'px'
if args.border == 'none' then
retval = retval .. ';border:none'
elseif args.border then
retval = retval .. ';border-color:' .. args.border
end
retval = retval .. '"><div style="position:relative;width:' .. width .. 'px' .. (args.border ~= 'none' and ';border:1px solid lightgray">' or '">')
else
retval = retval .. '<div class="locmap" style="width:' .. width .. 'px;'
if args.float == '"left"' or args.float == 'left' then
retval = retval .. 'float:left;clear:left'
elseif args.float == '"center"' or args.float == 'center' then
retval = retval .. 'float:none;clear:both;margin-left:auto;margin-right:auto'
elseif args.float == '"none"' or args.float == 'none' then
retval = retval .. 'float:none;clear:none'
else
retval = retval .. 'float:right;clear:right'
end
retval = retval .. '"><div style="width:' .. width .. 'px;padding:0"><div style="position:relative;width:' .. width .. 'px">'
end
local image = getContainerImage(args, map)
local currentTitle = mw.title.getCurrentTitle()
retval = string.format(
'%s[[File:%s|%spx|%s%s|class=notpageimage noviewer]]',
retval,
image,
width,
args.alt or ((args.label or currentTitle.text) .. ' is located in ' .. map('name')),
args.maplink and ('|link=' .. args.maplink) or ''
)
if args.caption and args.caption ~= '' then
if (currentTitle.namespace == 0) and mw.ustring.find(args.caption, '##') then
retval = retval .. '[[Category:Pages using location map with a double number sign in the caption]]'
end
end
if args.overlay_image then
return retval .. '<div style="position:absolute;top:0;left:0">[[File:' .. args.overlay_image .. '|' .. width .. 'px|class=notpageimage noviewer]]</div>'
else
return retval
end
end
function p.bottom(frame, args, map)
if not args then
args = getArgs(frame, {frameOnly = true, valueFunc = p.valueFunc})
end
if not map then
map = p.getMapParams(args[1], frame)
end
local retval = '</div>'
local currentTitle = mw.title.getCurrentTitle()
if not args.caption or args.border == 'infobox' then
if args.border then
retval = retval .. '<div style="padding-top:0.2em">'
else
retval = retval .. '<div style="font-size:91%;padding-top:3px">'
end
retval = retval
.. (args.caption or (args.label or currentTitle.text) .. ' (' .. map('name') .. ')')
.. '</div>'
elseif args.caption ~= '' then
-- This is not the pipe trick. We're creating a link with no text on purpose, so that CSS can give us a nice image
retval = retval .. '<div class="thumbcaption"><div class="magnify">[[:File:' .. getContainerImage(args, map) .. '| ]]</div>' .. args.caption .. '</div>'
end
if args.switcherLabel then
retval = retval .. '<span class="switcher-label" style="display:none">' .. args.switcherLabel .. '</span>'
elseif args.autoSwitcherLabel then
retval = retval .. '<span class="switcher-label" style="display:none">Show map of ' .. map('name') .. '</span>'
end
retval = retval .. '</div></div>'
if args.caption_undefined then
mw.log('Removed parameter caption_undefined used.')
local parent = frame:getParent()
if parent then
mw.log('Parent is ' .. parent:getTitle())
end
mw.logObject(args, 'args')
if currentTitle.namespace == 0 then
retval = retval .. '[[Category:Location maps with removed parameters|caption_undefined]]'
end
end
if map('skew') ~= '' or map('lat_skew') ~= '' or map('crosses180') ~= '' or map('type') ~= '' then
mw.log('Removed parameter used in map definition ' .. map())
if currentTitle.namespace == 0 then
local key = (map('skew') ~= '' and 'skew' or '') ..
(map('lat_skew') ~= '' and 'lat_skew' or '') ..
(map('crosses180') ~= '' and 'crosses180' or '') ..
(map('type') ~= '' and 'type' or '')
retval = retval .. '[[Category:Location maps with removed parameters|' .. key .. ' ]]'
end
end
if string.find(map('name'), '|', 1, true) then
mw.log('Pipe used in name of map definition ' .. map())
if currentTitle.namespace == 0 then
retval = retval .. '[[Category:Location maps with a name containing a pipe]]'
end
end
if args.float == 'center' then
retval = retval .. '</div>'
end
return retval
end
local function markOuterDiv(x, y, imageDiv, labelDiv, label_size)
return mw.html.create('div')
:addClass('od')
:addClass('notheme') -- T236137
:cssText('top:' .. round(y, 3) .. '%;left:' .. round(x, 3) .. '%;font-size:' .. label_size .. '%')
:node(imageDiv)
:node(labelDiv)
end
local function markImageDiv(mark, marksize, label, link, alt, title)
local builder = mw.html.create('div')
:addClass('id')
:cssText('left:-' .. round(marksize / 2) .. 'px;top:-' .. round(marksize / 2) .. 'px')
:attr('title', title)
if marksize ~= 0 then
builder:wikitext(string.format(
'[[File:%s|%dx%dpx|%s|link=%s%s|class=notpageimage noviewer]]',
mark,
marksize,
marksize,
label,
link,
alt and ('|alt=' .. alt) or ''
))
end
return builder
end
local function markLabelDiv(label, label_size, label_width, position, background, x, marksize)
if tonumber(label_size) == 0 then
return mw.html.create('div'):addClass('l0'):wikitext(label)
end
local builder = mw.html.create('div')
:cssText('width:' .. label_width .. 'em')
local distance = round(marksize / 2 + 1)
if position == 'top' then -- specified top
builder:addClass('pv'):cssText('bottom:' .. distance .. 'px;left:' .. (-label_width / 2) .. 'em')
elseif position == 'bottom' then -- specified bottom
builder:addClass('pv'):cssText('top:' .. distance .. 'px;left:' .. (-label_width / 2) .. 'em')
elseif position == 'left' or (tonumber(x) > 70 and position ~= 'right') then -- specified left or autodetected to left
builder:addClass('pl'):cssText('right:' .. distance .. 'px')
else -- specified right or autodetected to right
builder:addClass('pr'):cssText('left:' .. distance .. 'px')
end
builder = builder:tag('div')
:wikitext(label)
if background then
builder:cssText('background-color:' .. background)
end
return builder:done()
end
local function getX(longitude, left, right)
local width = (right - left) % 360
if width == 0 then
width = 360
end
local distanceFromLeft = (longitude - left) % 360
-- the distance needed past the map to the right equals distanceFromLeft - width. the distance needed past the map to the left equals 360 - distanceFromLeft. to minimize page stretching, go whichever way is shorter
if distanceFromLeft - width / 2 >= 180 then
distanceFromLeft = distanceFromLeft - 360
end
return 100 * distanceFromLeft / width
end
local function getY(latitude, top, bottom)
return 100 * (top - latitude) / (top - bottom)
end
function p.mark(frame, args, map)
if not args then
args = getArgs(frame, {wrappers = 'Template:Location map~'})
end
local mapnames = {}
if not map then
if args[1] then
map = {}
for mapname in mw.text.gsplit(args[1], '#', true) do
map[#map + 1] = p.getMapParams(mw.ustring.gsub(mapname, '^%s*(.-)%s*$', '%1'), frame)
mapnames[#mapnames + 1] = mapname
end
if #map == 1 then map = map[1] end
else
map = p.getMapParams('World', frame)
args[1] = 'World'
end
end
if type(map) == 'table' then
local outputs = {}
local oldargs = args[1]
for k,v in ipairs(map) do
args[1] = mapnames[k]
outputs[k] = tostring(p.mark(frame, args, v))
end
args[1] = oldargs
return table.concat(outputs, '#PlaceList#') .. '#PlaceList#'
end
local x, y, longitude, latitude
longitude = decdeg(args.lon_deg, args.lon_min, args.lon_sec, args.lon_dir, args.long, 'longitude')
latitude = decdeg(args.lat_deg, args.lat_min, args.lat_sec, args.lat_dir, args.lat, 'latitude')
if args.excludefrom then
-- If this mark is to be excluded from certain maps entirely (useful in the context of multiple maps)
for exclusionmap in mw.text.gsplit(args.excludefrom, '#', true) do
-- Check if this map is excluded. If so, return an empty string.
if args[1] == exclusionmap then
return ''
end
end
end
local builder = mw.html.create()
local currentTitle = mw.title.getCurrentTitle()
if args.coordinates then
-- Temporarily removed to facilitate infobox conversion. See [[Wikipedia:Coordinates in infoboxes]]
-- if longitude or latitude then
-- error('Coordinates from [[Module:Coordinates]] and individual coordinates cannot both be provided')
-- end
longitude = coord2text('longitude', args.coordinates)
latitude = coord2text('latitude', args.coordinates)
elseif not longitude and not latitude and args.useWikidata then
-- If they didn't provide either coordinate, try Wikidata. If they provided one but not the other, don't.
local entity = mw.wikibase.getEntity()
if entity and entity.claims and entity.claims.P625 and entity.claims.P625[1].mainsnak.snaktype == 'value' then
local value = entity.claims.P625[1].mainsnak.datavalue.value
longitude, latitude = value.longitude, value.latitude
end
if args.link and (currentTitle.namespace == 0) then
builder:wikitext('[[Category:Location maps with linked markers with coordinates from Wikidata]]')
end
end
if not longitude then
error('No value was provided for longitude')
elseif not latitude then
error('No value was provided for latitude')
end
if currentTitle.namespace > 0 then
if (not args.lon_deg) ~= (not args.lat_deg) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Degrees]]')
elseif (not args.lon_min) ~= (not args.lat_min) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Minutes]]')
elseif (not args.lon_sec) ~= (not args.lat_sec) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Seconds]]')
elseif (not args.lon_dir) ~= (not args.lat_dir) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Hemisphere]]')
elseif (not args.long) ~= (not args.lat) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Decimal]]')
end
end
if ((tonumber(args.lat_deg) or 0) < 0) and ((tonumber(args.lat_min) or 0) ~= 0 or (tonumber(args.lat_sec) or 0) ~= 0 or (args.lat_dir and args.lat_dir ~='')) then
builder:wikitext('[[Category:Location maps with negative degrees and minutes or seconds]]')
end
if ((tonumber(args.lon_deg) or 0) < 0) and ((tonumber(args.lon_min) or 0) ~= 0 or (tonumber(args.lon_sec) or 0) ~= 0 or (args.lon_dir and args.lon_dir ~= '')) then
builder:wikitext('[[Category:Location maps with negative degrees and minutes or seconds]]')
end
if (((tonumber(args.lat_min) or 0) < 0) or ((tonumber(args.lat_sec) or 0) < 0)) then
builder:wikitext('[[Category:Location maps with negative degrees and minutes or seconds]]')
end
if (((tonumber(args.lon_min) or 0) < 0) or ((tonumber(args.lon_sec) or 0) < 0)) then
builder:wikitext('[[Category:Location maps with negative degrees and minutes or seconds]]')
end
if args.skew or args.lon_shift or args.markhigh then
mw.log('Removed parameter used in invocation.')
local parent = frame:getParent()
if parent then
mw.log('Parent is ' .. parent:getTitle())
end
mw.logObject(args, 'args')
if currentTitle.namespace == 0 then
local key = (args.skew and 'skew' or '') ..
(args.lon_shift and 'lon_shift' or '') ..
(args.markhigh and 'markhigh' or '')
builder:wikitext('[[Category:Location maps with removed parameters|' .. key ..' ]]')
end
end
if map('x') ~= '' then
x = tonumber(mw.ext.ParserFunctions.expr(map('x', { latitude, longitude })))
else
x = tonumber(getX(longitude, map('left'), map('right')))
end
if map('y') ~= '' then
y = tonumber(mw.ext.ParserFunctions.expr(map('y', { latitude, longitude })))
else
y = tonumber(getY(latitude, map('top'), map('bottom')))
end
if (x < 0 or x > 100 or y < 0 or y > 100) and not args.outside then
mw.log('Mark placed outside map boundaries without outside flag set. x = ' .. x .. ', y = ' .. y)
local parent = frame:getParent()
if parent then
mw.log('Parent is ' .. parent:getTitle())
end
mw.logObject(args, 'args')
if currentTitle.namespace == 0 then
local key = currentTitle.prefixedText
builder:wikitext('[[Category:Location maps with marks outside map and outside parameter not set|' .. key .. ' ]]')
end
end
local mark = args.mark or map('mark')
if mark == '' then
mark = 'Red pog.svg'
end
local marksize = tonumber(args.marksize) or tonumber(map('marksize')) or 8
local imageDiv = markImageDiv(mark, marksize, args.label or mw.title.getCurrentTitle().text, args.link or '', args.alt, args[2])
local label_size = args.label_size or 91
local labelDiv
if args.label and args.position ~= 'none' then
labelDiv = markLabelDiv(args.label, label_size, args.label_width or 6, args.position, args.background, x, marksize)
end
return builder:node(markOuterDiv(x, y, imageDiv, labelDiv, label_size))
end
local function switcherSeparate(s)
if s == nil then return {} end
local retval = {}
for i in string.gmatch(s .. '#', '([^#]*)#') do
i = mw.text.trim(i)
retval[#retval + 1] = (i ~= '' and i)
end
return retval
end
function p.infobox_pushpin_map(frame)
local raw_args = getArgs(frame)
local parsed_args = {}
--If no map is supplied, return.
if not raw_args['pushpin_map'] then
return
end
-- Parse the raw arguments
parsed_args[1] = raw_args['pushpin_map']
parsed_args.float = 'center'
parsed_args.border = 'infobox'
parsed_args.coordinates = raw_args['coordinates']
parsed_args.caption = raw_args['pushpin_caption']
parsed_args.relief = raw_args['pushpin_relief']
parsed_args.label = raw_args['pushpin_label']
parsed_args.label_size = raw_args['pushpin_label_size']
parsed_args.position = raw_args['pushpin_label_position']
parsed_args.mark = raw_args['pushpin_mark']
parsed_args.marksize = raw_args['pushpin_mark_size']
parsed_args.alt = raw_args['pushpin_alt']
parsed_args.background = raw_args['pushpin_background']
parsed_args.width = raw_args['pushpin_map_size']
local map = {}
local caption_list = {}
for mapname in string.gmatch(parsed_args[1], '[^#]+') do
map[#map + 1] = p.getMapParams(mw.ustring.gsub(mapname, '^%s*(.-)%s*$', '%1'), frame)
end
if parsed_args['caption'] then
for caption in mw.text.gsplit(parsed_args['caption'], '##', true) do
caption_list[#caption_list + 1] = caption
end
end
if #map == 1 then
map = map[1]
if not parsed_args.caption then
parsed_args.caption = 'Location within ' .. map('name')
end
end
if type(map) == 'table' then
mw.log('----')
mw.logObject(map)
if #caption_list > #map then
error(string.format('%d captions were provided, but only %d maps were provided', #caption_list, #map))
elseif not parsed_args.caption then
-- Set a default caption for each of the multiple maps
for i=1, #map do
caption_list[#caption_list + 1] = 'Location within '.. map[i]('name')
end
end
local outputs = {}
parsed_args.autoSwitcherLabel = true
for k,v in ipairs(map) do
parsed_args.caption = caption_list[k]
outputs[k] = p.main(frame, parsed_args, v)
end
return '<div class="switcher-container">' .. table.concat(outputs) .. '</div>'
else
return p.top(frame, parsed_args, map) .. tostring( p.mark(frame, parsed_args, map) ) .. p.bottom(frame, parsed_args, map)
end
end
function p.main(frame, args, map)
local caption_list = {}
if not args then
args = getArgs(frame, {wrappers = 'Template:Location map', valueFunc = p.valueFunc})
end
if args.useWikidata == nil then
args.useWikidata = true
end
if not map then
if args[1] then
map = {}
for mapname in string.gmatch(args[1], '[^#]+') do
map[#map + 1] = p.getMapParams(mw.ustring.gsub(mapname, '^%s*(.-)%s*$', '%1'), frame)
end
if args['caption'] then
if args['caption'] == "" then
while #caption_list < #map do
caption_list[#caption_list + 1] = args['caption']
end
else
for caption in mw.text.gsplit(args['caption'], '##', true) do
caption_list[#caption_list + 1] = caption
end
end
end
if #map == 1 then map = map[1] end
else
map = p.getMapParams('World', frame)
end
end
if type(map) == 'table' then
local altmaps = switcherSeparate(args.AlternativeMap)
if #altmaps > #map then
error(string.format('%d AlternativeMaps were provided, but only %d maps were provided', #altmaps, #map))
end
local overlays = switcherSeparate(args.overlay_image)
if #overlays > #map then
error(string.format('%d overlay_images were provided, but only %d maps were provided', #overlays, #map))
end
if #caption_list > #map then
error(string.format('%d captions were provided, but only %d maps were provided', #caption_list, #map))
end
local outputs = {}
args.autoSwitcherLabel = true
for k,v in ipairs(map) do
args.AlternativeMap = altmaps[k]
args.overlay_image = overlays[k]
args.caption = caption_list[k]
outputs[k] = p.main(frame, args, v)
end
return '<div class="switcher-container">' .. table.concat(outputs) .. '</div>'
else
return p.top(frame, args, map) .. tostring( p.mark(frame, args, map) ) .. p.bottom(frame, args, map)
end
end
return p
7qlw0ix88lq10u4ocv0qw91tx09rjxy
Module:Clear
828
63378
670406
660508
2012-04-27T02:37:31Z
67.71.69.201
337482
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
670407
660509
2026-06-29T12:45:27Z
King ChristLike
13051
1 revision imported from [[:en:Template:Clear]]
337490
wikitext
text/x-wiki
<div style="clear:{{{1|both}}};" class={{{class|}}}></div><noinclude>
{{documentation}}
</noinclude>
an9yinekx1cqo1nkoi5u8nuqub9qbvg
Templeeti:URL
10
63715
667308
660204
2012-07-31T15:57:12Z
Ham Cork Fest
31243
remove excess whitespace after #titleparts
384544
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
667310
660205
2026-06-29T12:40:33Z
King ChristLike
13051
1 revision imported from [[:en:Template:URL]]
364233
wikitext
text/x-wiki
<includeonly>{{#invoke:URL|url}}</includeonly>{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using URL template with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:URL]] with unknown parameter "_VALUE_"|ignoreblank=y | 1 | 2 }}<noinclude>{{documentation}}</noinclude>
a3iaiir0mhs0y2mdlkbw2snyhxnxqwu
Templeeti:Redirect template
10
63741
670300
663301
2012-07-31T15:54:03Z
Ham Cork Fest
31243
*/ Template category */ fix small error
364349
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
670301
663302
2026-06-29T12:43:57Z
King ChristLike
13051
1 revision imported from [[:en:Template:Redirect_template]]
364372
wikitext
text/x-wiki
{{#invoke:Redirect template|main}}<noinclude>
{{Documentation}}</noinclude>
1cl28dcwjsrtge5hedu653jwub1cll3
Igbo Wiki Days 2025 Mentorship Resources Hub
0
66773
670484
540855
2026-06-29T19:18:18Z
Nwonwu Uchechukwu P
12966
/* Mentors */
670484
wikitext
text/x-wiki
== Overview ==
This Hub is the single place for materials, guidance, and ongoing discussion produced by the "Igbo Wiki Days 2025 Mentorship Project". Use it to re-watch recordings and download slides for further learning.
== Mentors ==
# [[User:King ChristLike|King ChristLike]]
# [[User:Lucy Iwuala|Lucy Iwuala]]
# [[User:Macocobovi|Macocobovi]]
# [[User:Senator Choko|Senator Choko]]
# [[User:JosefAnthony|Josef Anthony]]
# [[User:Bovimacoco|Bovimacoco]]
# [[User:Godfrey Emmanuel|Godfrey Emmanuel]]
# [[User:Accuratcy051|Accurate]]
# [[User:Nwonwu Uchechukwu P|Nwonwu Uchechukwu P]]
# [[User:Ogalihillary|Hilary Ogali]]
# [[User:Dagentle|Kwesike]]
# [[User:Ebubechukwu1|Ebubechukwu]]
# [[User:Timzy D'Great|Timzy]]
# [[User:Lebron jay|Lebron Jay]]
# [[User:Akwugo|Akwugo]]
# [[User:Sayvhior|Sayvhior]]
# [[User:Tochiprecious|Tochi Precious]]
# [[User:Oby Ezeilo|Oby Ezeilo]]
# [[User:UOzurumba (WMF)|UOzurumba (WMF)]]
== Session recordings and slides ==
{| class="wikitable sortable" style="width:100%; border:1px solid #ccc; background:#fff;"
! style="width:6em;" | Session
! Description
! Recording
! Slides & handouts
! Mentor
|-
| '''Session 1'''
| Introduction to Wikimedia Commons
| [https://us06web.zoom.us/rec/share/YC6k_7gWX-3FAVUW5H9l3CV3sp0xRCnFE0eLyferHjM6ICzfWd7qxATgoDNjXEki.uxxtghPPaA9_Ct7-?pwd=DDMFW8UJBWU-9-934AAAIAAAAIzpRKKOZtODOqoXwN8hqZJBPe9-oKTyv6NNQG4HXm7-zz-YPc__u1I4PoA_FR9CdjAwMDAwNA 🎥 Watch recording]
|[https://www.canva.com/design/DAG0tiwuQHU/A4znz5tJHzkafo4LRbYqHg/edit?utm_content=DAG0tiwuQHU&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton Slide]
| Nwonwu Pascaline
|-
| '''Session 2'''
| Uploading files to Wikimedia Commons and translating description of files
| [https://us06web.zoom.us/rec/share/lUUY0nxci-aTFsgEZdvCxinyER8DIsGIPvMYxr3y5N2BwXBo9RP8B7CYPBt5iPb_.ifnvSFgf5ZfDNS88?pwd=DINPLidsIr1JvNqnVwAAIAAAAK6rEKqO9IWRiDPhfAyAdCG8_2f39Eco59r1PCIVR0XzO3rBjoWIHUZmsxu7bZEISjAwMDAwNA 🎥 Watch recording]
|[https://www.canva.com/design/DAG0_W7SCLY/oMTYaUhG14-dgfXuiIWcNA/edit?utm_content=DAG0_W7SCLY&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton Slide]
| Nwonwu Pascaline
|-
| '''Session 3'''
| Basics of Wikisource
| [https://us06web.zoom.us/rec/share/pt4x-5OfAfUG_5gaLB_g9knj5AQgqu7ggX58Sje6JLfIWBJeF1ar3PXLyiqb9-Ch.5Jml1yHAkUpizHq2?pwd=DPozy1bPLGeKxQeNYgAAIAAAAHmN6l7sFPB7j83SnfYKegLQS5dILAxA65YiofewdKQCD9NGP6SEc3bMrCkSU5aFejAwMDAwNA 🎥 Watch recording]
| [https://docs.google.com/presentation/d/1TknAFenm2Q6rssLUK9SgWBLNzeaRWNHG0djQ6yWB9w4/edit?slide=id.p2#slide=id.p2 Slide]
| Timzy D’Great
|-
| '''Session 4'''
| Introduction to Igbo Wikisource
| [https://us06web.zoom.us/rec/share/HaKAsFqHu3awMlEtMABO3OA5aw4ZVDJwtCyb3vPmEF166QNyc8GAlGNADXekpwfP.EbGJTBBnZ0Lly1Ob?pwd=DJuUTU4_VUq5HWTBkgAAIAAAAGvrR8Ig1S4xzdYe-ju4IHNbdqH4zxOscCSz1CaVYemvHYn6TJ_15GJttX3DCwfiXDAwMDAwNA 🎥 Watch recording]
|
| Lebron Jay
|-
| '''Session 5'''
| Creating Index pages on Igbo Wikisource
| [https://us06web.zoom.us/rec/share/2nzzzK82lXEBvJheZW0IQwoLnxEgNLDWa6ecrQmIUqrx0l0G2TUyJcf2TSfkL_Wz.wrSnHN0e6_KgXGCB?pwd=DG-3ZAryJyQebEdRCwAAIAAAALbzBts0KSAEBuTqP8IVYd-XGHS7g6rb3x2JIvNBWOu2ClrVECFlj4m09f3eGtwlIzAwMDAwNA 🎥 Watch recording]
|
| Lebron Jay
|-
| '''Session 6'''
| Editing the Igbo Wikiquote and best practices
| [https://us06web.zoom.us/rec/share/cqWyoUiNJVcP_zpyYawXYH1VjlwMv8B_MeGr9NuI2Pa0kgKsyo7_WZOwIRPAwnO7.niHoTQ5ANv85Nczn?pwd=DM3UVmXt_-PPht8OPQAAIAAAAFwRma03ZKPMXGTsdzpCn_RdBQ0GrNQIfnRKc-2bUMHeJFEWYiPkaDqrz2fsBYCBnzAwMDAwNA 🎥 Watch recording]
|
| Tochi Precious
|-
| '''Session 7'''
| Editing the Igbo Wikipedia and best practices
| [https://us06web.zoom.us/rec/share/VVAOSWewjW5NH7wlaT4RJWAgYNTs9JqlzAsQD4xhetRGhwPrXWfxUHdYAdjdia0B.xkKmDWifZbRlkbfW?pwd=DKV-_BnDYYoKHzbL6AAAIAAAAGx40x4O-8SmBgWN1FYhLd4xmBTVhskkzwt_NTKbtyH2WnrG68boAcK8OS6_D9LjUDAwMDAwNA 🎥 Watch recording]
|
| King ChristLike & Lucy Iwuala
|-
| '''Session 8'''
| Adding Images to Wikisource pages
| [https://us06web.zoom.us/rec/share/dGZaSZA7KE-wxEXzuU71kwLWgi7R52EpFDSUcZKwwxV1S_XU0-naor5m5wEI23Pe.MV5Ago1zq9RgKcB3?pwd=DMY98Woau_tH8f8CxgAAIAAAAMJNystLYvFXhznKgj3lEqJQ2dy60bBZjFqO0u2RzvqGe7D96FE5MwCcTuThd1wTWDAwMDAwNA 🎥 Watch recording]
|
| Timzy D’Great & Lebron Jay
|-
| '''Session 9'''
| Proofreading on Igbo Wikisource
| [https://us06web.zoom.us/rec/share/S_roYx3zrHil6wjOGggFyXMz6mfExvG-RBwBo0w2P-u4N13f5LRUT2iCQWLvCYTA.qcx1B3r6NYOtWAZb?pwd=DHb1s4XxNiV9_xTPpwAAIAAAAFy2ydDZu72sul5fn8hZmgF_vmT9oPb19c1rkBC6DGekcB89tyVX4P3rk1CwrtcBtjAwMDAwNA 🎥 Watch recording]
|
| Timzy D’Great
|-
| '''Session 10'''
| Validating Pages on Igbo Wikisource
| [https://us06web.zoom.us/rec/share/03O64ffg7IOfZaQhZj0gsjEhx2ICg5xv9mKztmCKOXCSPmY8o4qh-M59J8cz7p8d.ClI5zd0rFCN1tfpj?pwd=DLIjJncl89bQWzIISwAAIAAAABPnV4o6lQ0iGSDvbg00sViKdjHPE2jOrVJZBsADh2CgjlmGvZUrCkC_m1SUCSr7GzAwMDAwNA 🎥 Watch recording]
|
| Lebron Jay
|-
| '''Session 11'''
| Demo session on selected Wikidata tools/gadgets: Duplicity, Recoin, Retrieved and ShortWdSummary
| [https://us06web.zoom.us/rec/share/5vV84Zrb1j4WjVqGZLIY8u9FbByTSKUVmkLYna6c_RIRMAcI0G87PGiICB0_ExeE.8uUA-UvypM-6-GVa?pwd=DK9kA2xhEJdDfSXeEgAAIAAAAD6XIBKS5OPMENOTp9OktdnRxKOCK_cW0RPLIGpsdW2zqmxoQrujvLK_ruRXw62JxTAwMDAwNA 🎥 Watch recording]
|
| King ChristLike & Josef Anthony
|-
| '''Session 12'''
| Wikisource Wrap-up session
| [https://us06web.zoom.us/rec/share/75wwBQS6fAU1UT4d7j9Xiu2IhagL5gx9JMhJbjYam2oBkQGFnTmKAMF8TryaI4FC.Ffb0MbeDVcJxZcgG?pwd=DPotRQelKoAnqgs8XgAAIAAAAFpffzmlcOpsmDl4mbWJ4FvgzND3QxPBJ09DPEnxqVd9If2bBpjJUAX0AGDAIr9kBjAwMDAwNA 🎥 Watch recording]
|
| Timzy D’Great
|-
| '''Session 13'''
| Practical session on editing Igbo Wikiquote
| [https://us06web.zoom.us/rec/share/5nckYbZLJ4yZNEGDrdW2RHuCYOkgVLHAfpsFqR3vu15mFB2rTF-0Ach97Ew7vZh-.ZF1ybFb9M-oe93Ph?pwd=DCp9_Zayhu6KVB44QwAAIAAAALcf6hg91iIQ49XZPoPeucnBWDO7I3r1bhnh3KP70mjtIgTnz2pnWKPQ9mebVA92pjAwMDAwNA 🎥 Watch recording]
|
| Senator Choko & Ebubechukwu
|-
|}
j178591zyn5yo3vicr52i7p8n0t49w5
Abiod Valley
0
76738
670462
655841
2026-06-29T18:54:20Z
Neme244
16387
improved article
670462
wikitext
text/x-wiki
'''Oued El Abiod''' (Bekee:Ndagwurugwu Abiod )bụ wadi nke na-emepụta ụzọ ugwu n'ime nnukwu ugwu Aurès , nke dị na Saharan Atlas n'ebe ugwu ọwụwa anyanwụ nke Algeria. Ya na Oued Abdi, ọ bụ otu n'ime wadi ndị kachasị mkpa n'ime mpaghara ugwu Aurès.N'oge mmiri ozuzo, mmiri ozuzo na snow na-agbaze na-asọba n'ime ndagwurugwu ahụ ma mepụta Osimiri Abiod. Ndagwurugwu ahụ na-amalite n'okpuru Ugwu Djebel Chélia, nke bụ ugwu kachasị elu na Algeria, ma na-asọba n'akụkụ ndịda ọdịda anyanwụ ruo Tolga. N'ikpeazụ, mmiri ya na-agbasa ma na-apụ n'anya n'ime Ọzara Sahara dị nso . <ref name="readersnatural">{{Cite book|title=Natural Wonders of the World|publisher=Reader's Digest Association, Inc|year=1980|isbn=978-0-89577-087-5|editor=Scheffel|location=United States of America|pages=27}}</ref> .<ref>{{Cite journal|author=Kimble|first=George H. T.|date=June 1941|title=The Berbers of Eastern Algeria|journal=The Geographical Journal|volume=97|issue=6|pages=337–347|doi=10.2307/1788169}}</ref><ref name="readersnatural" />
== Ọdịdị ala ==
Ahịhịa ndị dị n'ugwu dị n'ebe ugwu nke Ndagwurugwu Abiod na-abụkarị Mediterenian nke nwere oke ọhịa nke osisi oak, pine na osisi cedar oge ochie, nke nnukwu mmiri ozuzo na-akwagide na mkpọda ugwu. Akụkụ ndịda bụ ọzara nke nwere ahịhịa na-adịghị ahụkebe, dị ka oak, junipa, cedar, clumps nke thyme, na harmel. Ndagwurugwu ahụ nwere ọtụtụ obere oases<ref name="readersnatural" /> [5]
E nwere ọtụtụ ebe obibi mmadụ n'akụkụ mgbidi nke Ndagwurugwu Abiod, gụnyere Ghoufi . <ref>{{Cite book|url=https://books.google.com/books?id=CNMLAAAAYAAJ&q=Ghoufi+abiod|title=Il était une fois l'ethnographie|author=Tillion|first=Germaine|date=2000|publisher=Seuil|isbn=9782020257022|pages=94|language=fr}}</ref><ref>{{Cite book|url=https://books.google.com/books?id=zA5xAAAAMAAJ&q=Ghoufi+abiod|title=Encyclopédie berbère|author=Isguen-Bouzeis|first=Beni|date=1991|publisher=EDISUD|isbn=9782857442011|pages=1133|language=fr}}</ref> Mgbidi sandstone nke ndagwurugwu ahụ dị nro ma dị mfe ịrụ ọrụ n'ụdị, ya mere ọtụtụ obodo nta dị na mgbidi ndagwurugwum ahụ gụnyere nnukwu ụlọ nkume.[5] N'akụkụ obodo Tighanimine, e nwere ihe fọdụrụ na Ọwa mmiri Rom oge ochie. [8]
== Edensibịa ==
<references />
j4hubdgtlph61ydtab4dm4owc1ro26e
Event:Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club
1728
76791
670429
661592
2026-06-29T18:25:24Z
Vivian Amalachukwu
17172
670429
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://en.wikipedia.org/wiki/West_African_Airways_Corporation| West African Airways Corporation]
* [https://en.wikipedia.org/wiki/Outline_of_Nigeria| Outline of Nigeria]
* [https://en.wikipedia.org/wiki/Akwa_Ibom_State_Ministry_of_Transport_and_Petroleum| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://en.wikipedia.org/wiki/Akua_Naru| Akua Naru]
* [https://en.wikipedia.org/wiki/Gyedu-Blay_Ambolley| Gyedu-Blay Ambolley]
* [https://en.wikipedia.org/wiki/Negrophilia| Negrophilia]
* [https://en.wikipedia.org/wiki/Patrice_Bart-Williams| Patrice Bart-Williams]
* [https://en.wikipedia.org/wiki/Irreligion_in_Nigeria| Irreligion in Nigeria]
* [https://en.wikipedia.org/wiki/Islam_in_Nigeria| Islam in Nigeria]
* [https://en.wikipedia.org/wiki/Igbabonelimhin| Igbabonelimhin]
* [https://en.wikipedia.org/wiki/Ibani_tribe| Ibani tribe]
* [https://en.wikipedia.org/wiki/Ijebu_people| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
dgk7xzlz9z4331syziy0bif5t1gpap3
670430
670429
2026-06-29T18:26:16Z
Vivian Amalachukwu
17172
670430
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://en.wikipedia.org/wiki/Outline_of_Nigeria| Outline of Nigeria]
* [https://en.wikipedia.org/wiki/Akwa_Ibom_State_Ministry_of_Transport_and_Petroleum| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://en.wikipedia.org/wiki/Akua_Naru| Akua Naru]
* [https://en.wikipedia.org/wiki/Gyedu-Blay_Ambolley| Gyedu-Blay Ambolley]
* [https://en.wikipedia.org/wiki/Negrophilia| Negrophilia]
* [https://en.wikipedia.org/wiki/Patrice_Bart-Williams| Patrice Bart-Williams]
* [https://en.wikipedia.org/wiki/Irreligion_in_Nigeria| Irreligion in Nigeria]
* [https://en.wikipedia.org/wiki/Islam_in_Nigeria| Islam in Nigeria]
* [https://en.wikipedia.org/wiki/Igbabonelimhin| Igbabonelimhin]
* [https://en.wikipedia.org/wiki/Ibani_tribe| Ibani tribe]
* [https://en.wikipedia.org/wiki/Ijebu_people| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
soa2mt4odpefaw23bi6njwk3jmqhw6s
670431
670430
2026-06-29T18:27:04Z
Vivian Amalachukwu
17172
670431
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://en.wikipedia.org/wiki/Akwa_Ibom_State_Ministry_of_Transport_and_Petroleum| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://en.wikipedia.org/wiki/Akua_Naru| Akua Naru]
* [https://en.wikipedia.org/wiki/Gyedu-Blay_Ambolley| Gyedu-Blay Ambolley]
* [https://en.wikipedia.org/wiki/Negrophilia| Negrophilia]
* [https://en.wikipedia.org/wiki/Patrice_Bart-Williams| Patrice Bart-Williams]
* [https://en.wikipedia.org/wiki/Irreligion_in_Nigeria| Irreligion in Nigeria]
* [https://en.wikipedia.org/wiki/Islam_in_Nigeria| Islam in Nigeria]
* [https://en.wikipedia.org/wiki/Igbabonelimhin| Igbabonelimhin]
* [https://en.wikipedia.org/wiki/Ibani_tribe| Ibani tribe]
* [https://en.wikipedia.org/wiki/Ijebu_people| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
shkvoolbexod9pnb43pbq1j29w16p99
670433
670431
2026-06-29T18:27:48Z
Vivian Amalachukwu
17172
670433
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://en.wikipedia.org/wiki/Akua_Naru| Akua Naru]
* [https://en.wikipedia.org/wiki/Gyedu-Blay_Ambolley| Gyedu-Blay Ambolley]
* [https://en.wikipedia.org/wiki/Negrophilia| Negrophilia]
* [https://en.wikipedia.org/wiki/Patrice_Bart-Williams| Patrice Bart-Williams]
* [https://en.wikipedia.org/wiki/Irreligion_in_Nigeria| Irreligion in Nigeria]
* [https://en.wikipedia.org/wiki/Islam_in_Nigeria| Islam in Nigeria]
* [https://en.wikipedia.org/wiki/Igbabonelimhin| Igbabonelimhin]
* [https://en.wikipedia.org/wiki/Ibani_tribe| Ibani tribe]
* [https://en.wikipedia.org/wiki/Ijebu_people| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
26r09erwbh41lzhch5yq4ml9s9d4hsm
670434
670433
2026-06-29T18:28:54Z
Vivian Amalachukwu
17172
670434
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://en.wikipedia.org/wiki/Gyedu-Blay_Ambolley| Gyedu-Blay Ambolley]
* [https://en.wikipedia.org/wiki/Negrophilia| Negrophilia]
* [https://en.wikipedia.org/wiki/Patrice_Bart-Williams| Patrice Bart-Williams]
* [https://en.wikipedia.org/wiki/Irreligion_in_Nigeria| Irreligion in Nigeria]
* [https://en.wikipedia.org/wiki/Islam_in_Nigeria| Islam in Nigeria]
* [https://en.wikipedia.org/wiki/Igbabonelimhin| Igbabonelimhin]
* [https://en.wikipedia.org/wiki/Ibani_tribe| Ibani tribe]
* [https://en.wikipedia.org/wiki/Ijebu_people| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
5wbg25o1ijuzggbjzgjvndwu4sc0oee
670435
670434
2026-06-29T18:29:45Z
Vivian Amalachukwu
17172
670435
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://en.wikipedia.org/wiki/Negrophilia| Negrophilia]
* [https://en.wikipedia.org/wiki/Patrice_Bart-Williams| Patrice Bart-Williams]
* [https://en.wikipedia.org/wiki/Irreligion_in_Nigeria| Irreligion in Nigeria]
* [https://en.wikipedia.org/wiki/Islam_in_Nigeria| Islam in Nigeria]
* [https://en.wikipedia.org/wiki/Igbabonelimhin| Igbabonelimhin]
* [https://en.wikipedia.org/wiki/Ibani_tribe| Ibani tribe]
* [https://en.wikipedia.org/wiki/Ijebu_people| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
our9smonmspz3612z9dhc6ed1wm0w8z
670436
670435
2026-06-29T18:30:46Z
Vivian Amalachukwu
17172
670436
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://en.wikipedia.org/wiki/Patrice_Bart-Williams| Patrice Bart-Williams]
* [https://en.wikipedia.org/wiki/Irreligion_in_Nigeria| Irreligion in Nigeria]
* [https://en.wikipedia.org/wiki/Islam_in_Nigeria| Islam in Nigeria]
* [https://en.wikipedia.org/wiki/Igbabonelimhin| Igbabonelimhin]
* [https://en.wikipedia.org/wiki/Ibani_tribe| Ibani tribe]
* [https://en.wikipedia.org/wiki/Ijebu_people| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
f5dontx7ozi743xu8gd7cr0zht52k5u
670437
670436
2026-06-29T18:31:45Z
Vivian Amalachukwu
17172
670437
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://en.wikipedia.org/wiki/Irreligion_in_Nigeria| Irreligion in Nigeria]
* [https://en.wikipedia.org/wiki/Islam_in_Nigeria| Islam in Nigeria]
* [https://en.wikipedia.org/wiki/Igbabonelimhin| Igbabonelimhin]
* [https://en.wikipedia.org/wiki/Ibani_tribe| Ibani tribe]
* [https://en.wikipedia.org/wiki/Ijebu_people| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
i8104jih2g5udrqpxh5m98oms064vye
670438
670437
2026-06-29T18:32:32Z
Vivian Amalachukwu
17172
670438
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://en.wikipedia.org/wiki/Islam_in_Nigeria| Islam in Nigeria]
* [https://en.wikipedia.org/wiki/Igbabonelimhin| Igbabonelimhin]
* [https://en.wikipedia.org/wiki/Ibani_tribe| Ibani tribe]
* [https://en.wikipedia.org/wiki/Ijebu_people| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
n4tgzu8y25p6xq6m9hvtjr5xzgds7rn
670439
670438
2026-06-29T18:33:19Z
Vivian Amalachukwu
17172
670439
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://en.wikipedia.org/wiki/Igbabonelimhin| Igbabonelimhin]
* [https://en.wikipedia.org/wiki/Ibani_tribe| Ibani tribe]
* [https://en.wikipedia.org/wiki/Ijebu_people| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
bc0ncecknvelvua7v951sg0r8ipy2z3
670440
670439
2026-06-29T18:34:11Z
Vivian Amalachukwu
17172
670440
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://en.wikipedia.org/wiki/Ibani_tribe| Ibani tribe]
* [https://en.wikipedia.org/wiki/Ijebu_people| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
6gz7jdmf1qwblnss127s3x9ikymrf1t
670441
670440
2026-06-29T18:34:59Z
Vivian Amalachukwu
17172
670441
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://en.wikipedia.org/wiki/Ijebu_people| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
je6rfbzzqxxks0qroq8gizb20ewtoai
670443
670441
2026-06-29T18:35:51Z
Vivian Amalachukwu
17172
670443
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://en.wikipedia.org/wiki/Ada_the_Country| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
1b0z42nxogjj2bfqdvkaap96v4u71xh
670444
670443
2026-06-29T18:37:28Z
Vivian Amalachukwu
17172
670444
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://en.wikipedia.org/wiki/Ichi_(scarification)| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
lb0m8ucdmzqej5gethxon9hv0r8oqwa
670445
670444
2026-06-29T18:38:26Z
Vivian Amalachukwu
17172
670445
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://en.wikipedia.org/wiki/Augustine_Adetula_Alabi| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
8fchjj6ukd9ixi9gmbptfu2n7vo32lj
670447
670445
2026-06-29T18:40:05Z
Vivian Amalachukwu
17172
670447
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://en.wikipedia.org/wiki/Aruan_of_Udo| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
hopkoy59l7a507mw5msgopn594jka77
670450
670447
2026-06-29T18:41:16Z
Vivian Amalachukwu
17172
670450
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://en.wikipedia.org/wiki/Onitsha_Market_Literature| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
pj01xey2qp1ddwesyu1c7vkk2mx0stg
670451
670450
2026-06-29T18:43:00Z
Vivian Amalachukwu
17172
670451
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://en.wikipedia.org/wiki/Eastern_Apoi_tribe| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
nh30x7i5dc23if3yomqcfku288i8y5k
670452
670451
2026-06-29T18:43:49Z
Vivian Amalachukwu
17172
670452
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://en.wikipedia.org/wiki/Pharmaceutical_industry_in_Nigeria| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
3sbeedwpq3is0gb56ouumbeaq9a9wft
670453
670452
2026-06-29T18:44:50Z
Vivian Amalachukwu
17172
670453
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://en.wikipedia.org/wiki/Sunil_Vaswani| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
k6kzhu5621thi66w96qduzfji8lfduj
670454
670453
2026-06-29T18:45:41Z
Vivian Amalachukwu
17172
670454
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://en.wikipedia.org/wiki/Muhammad_Bima_Enagi| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
bqe8b8fvy6g91am1vs5jwzo8kaze0zq
670455
670454
2026-06-29T18:46:34Z
Vivian Amalachukwu
17172
670455
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://en.wikipedia.org/wiki/Bode_Akindele| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
lyfuimo8qz0hf70c21tugdgy7wpdg81
670456
670455
2026-06-29T18:47:50Z
Vivian Amalachukwu
17172
670456
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://en.wikipedia.org/wiki/Gabriel_Ogbechie| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
a9tnsx6ylxjgphx0l8clr87k63dvsow
670457
670456
2026-06-29T18:48:56Z
Vivian Amalachukwu
17172
670457
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://en.wikipedia.org/wiki/Auwalu_Abdullahi_Rano| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
s6b6sqnzl0syepjm9m447w8982hctiw
670458
670457
2026-06-29T18:49:42Z
Vivian Amalachukwu
17172
670458
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://en.wikipedia.org/wiki/Kase_Lukman_Lawal| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
4rhuu50f5r0nxr2p0wm9kdebsiw0w8x
670459
670458
2026-06-29T18:50:50Z
Vivian Amalachukwu
17172
670459
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://en.wikipedia.org/wiki/Muhammad_Abu_Ali| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
sdxste27p4ua1xq2nusjth478o35q40
670460
670459
2026-06-29T18:52:41Z
Vivian Amalachukwu
17172
670460
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://en.wikipedia.org/wiki/Binta_Dada| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
rra5ekfz806e8430te29hg946pzu95n
670461
670460
2026-06-29T18:53:28Z
Vivian Amalachukwu
17172
670461
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://en.wikipedia.org/wiki/Olumide_Bakare| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
elup66h1rosutooq2ialak9nom2qemy
670463
670461
2026-06-29T18:54:31Z
Vivian Amalachukwu
17172
670463
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://en.wikipedia.org/wiki/Paul_Utomi| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
rz2obhe3r60m7zftrrgp2cvei17o25c
670464
670463
2026-06-29T18:55:52Z
Vivian Amalachukwu
17172
670464
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://en.wikipedia.org/wiki/Paul_Obazele| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
k2wffz2yfda0ijpqa5180izwy08vqyc
670465
670464
2026-06-29T18:56:44Z
Vivian Amalachukwu
17172
670465
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://en.wikipedia.org/wiki/Tarila_Thompson| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
q2o9c8ef03pl6tvnphw09phovmy9hrh
670466
670465
2026-06-29T18:57:42Z
Vivian Amalachukwu
17172
670466
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://en.wikipedia.org/wiki/Gbenga_Adeyinka| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
n57baelpnay5tozn0tjsyjt3f7nqg9m
670467
670466
2026-06-29T18:58:32Z
Vivian Amalachukwu
17172
670467
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://en.wikipedia.org/wiki/Kareem_Adepoju| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
h0ob8cgsuuawzrizff34yc68wji0ep9
670468
670467
2026-06-29T18:59:32Z
Vivian Amalachukwu
17172
670468
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://en.wikipedia.org/wiki/Zulu_Adigwe| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
3zmwc0210bcavmv18lrdy1llhduzdxk
670469
670468
2026-06-29T19:00:26Z
Vivian Amalachukwu
17172
670469
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://en.wikipedia.org/wiki/Jacob_Afolabi| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
5o00nathxqsgxy0n3gzzb4ihqj0chir
670470
670469
2026-06-29T19:01:26Z
Vivian Amalachukwu
17172
670470
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://en.wikipedia.org/wiki/Afeez_Agoro| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
gk816d4v5mequaspwe50gm50ar1sh1r
670471
670470
2026-06-29T19:02:22Z
Vivian Amalachukwu
17172
670471
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://en.wikipedia.org/wiki/Isidore_Okpewho| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
5qksealo7cn4nm7698qau88ls09bats
670472
670471
2026-06-29T19:03:37Z
Vivian Amalachukwu
17172
670472
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Isidore%20Okpewho&filter-type=automatic&filter-id=previous-edits#/sx| Isidore Okpewho]
* [https://en.wikipedia.org/wiki/Efe_Ronald_Chesterfield| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
7eimk6a2auk5xjfovm3qzne5glnkk9j
670473
670472
2026-06-29T19:04:56Z
Vivian Amalachukwu
17172
670473
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Isidore%20Okpewho&filter-type=automatic&filter-id=previous-edits#/sx| Isidore Okpewho]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efe%20Ronald%20Chesterfield&filter-type=automatic&filter-id=previous-edits#/sx| Efe Ronald Chesterfield]
* [https://en.wikipedia.org/wiki/Kole_Omotoso| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
bvdm6k52erfxhd940dghlnlc4nldf2e
670474
670473
2026-06-29T19:05:53Z
Vivian Amalachukwu
17172
670474
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Isidore%20Okpewho&filter-type=automatic&filter-id=previous-edits#/sx| Isidore Okpewho]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efe%20Ronald%20Chesterfield&filter-type=automatic&filter-id=previous-edits#/sx| Efe Ronald Chesterfield]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kole%20Omotoso&filter-type=automatic&filter-id=previous-edits#/sx| Kole Omotoso]
* [https://en.wikipedia.org/wiki/Sunday_Emmanuel_(athlete)| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
qc4hvnj47qp5oxclm0zz5byjh8a7gio
670475
670474
2026-06-29T19:06:38Z
Vivian Amalachukwu
17172
670475
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Isidore%20Okpewho&filter-type=automatic&filter-id=previous-edits#/sx| Isidore Okpewho]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efe%20Ronald%20Chesterfield&filter-type=automatic&filter-id=previous-edits#/sx| Efe Ronald Chesterfield]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kole%20Omotoso&filter-type=automatic&filter-id=previous-edits#/sx| Kole Omotoso]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunday%20Emmanuel%20(athlete)&filter-type=automatic&filter-id=previous-edits#/sx| Sunday Emmanuel (athlete)]
* [https://en.wikipedia.org/wiki/Monday_Emoghavwe| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
2wwrpvi5e5elu02p0eq7epobgktqwlr
670476
670475
2026-06-29T19:07:31Z
Vivian Amalachukwu
17172
670476
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Isidore%20Okpewho&filter-type=automatic&filter-id=previous-edits#/sx| Isidore Okpewho]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efe%20Ronald%20Chesterfield&filter-type=automatic&filter-id=previous-edits#/sx| Efe Ronald Chesterfield]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kole%20Omotoso&filter-type=automatic&filter-id=previous-edits#/sx| Kole Omotoso]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunday%20Emmanuel%20(athlete)&filter-type=automatic&filter-id=previous-edits#/sx| Sunday Emmanuel (athlete)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Monday%20Emoghavwe&filter-type=automatic&filter-id=previous-edits#/sx| Monday Emoghavwe]
* [https://en.wikipedia.org/wiki/Shuaibu_Amodu| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
19mlrv41qhavg3s0efziwgk0p9yenbz
670477
670476
2026-06-29T19:08:21Z
Vivian Amalachukwu
17172
670477
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Isidore%20Okpewho&filter-type=automatic&filter-id=previous-edits#/sx| Isidore Okpewho]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efe%20Ronald%20Chesterfield&filter-type=automatic&filter-id=previous-edits#/sx| Efe Ronald Chesterfield]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kole%20Omotoso&filter-type=automatic&filter-id=previous-edits#/sx| Kole Omotoso]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunday%20Emmanuel%20(athlete)&filter-type=automatic&filter-id=previous-edits#/sx| Sunday Emmanuel (athlete)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Monday%20Emoghavwe&filter-type=automatic&filter-id=previous-edits#/sx| Monday Emoghavwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Shuaibu%20Amodu&filter-type=automatic&filter-id=previous-edits#/sx| Shuaibu Amodu]
* [https://en.wikipedia.org/wiki/Obinna_Eregbu| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
trob3ptdr2rmb0tri4lpnzoy3gennru
670478
670477
2026-06-29T19:09:19Z
Vivian Amalachukwu
17172
L
670478
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Isidore%20Okpewho&filter-type=automatic&filter-id=previous-edits#/sx| Isidore Okpewho]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efe%20Ronald%20Chesterfield&filter-type=automatic&filter-id=previous-edits#/sx| Efe Ronald Chesterfield]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kole%20Omotoso&filter-type=automatic&filter-id=previous-edits#/sx| Kole Omotoso]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunday%20Emmanuel%20(athlete)&filter-type=automatic&filter-id=previous-edits#/sx| Sunday Emmanuel (athlete)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Monday%20Emoghavwe&filter-type=automatic&filter-id=previous-edits#/sx| Monday Emoghavwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Shuaibu%20Amodu&filter-type=automatic&filter-id=previous-edits#/sx| Shuaibu Amodu]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Obinna%20Eregbu&filter-type=automatic&filter-id=previous-edits#/sx| Obinna Eregbu]
* [https://en.wikipedia.org/wiki/Efan_Ekoku| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
rsm70s5hm0nae5kuyfbwmmdccy6ld3o
670479
670478
2026-06-29T19:10:20Z
Vivian Amalachukwu
17172
670479
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Isidore%20Okpewho&filter-type=automatic&filter-id=previous-edits#/sx| Isidore Okpewho]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efe%20Ronald%20Chesterfield&filter-type=automatic&filter-id=previous-edits#/sx| Efe Ronald Chesterfield]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kole%20Omotoso&filter-type=automatic&filter-id=previous-edits#/sx| Kole Omotoso]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunday%20Emmanuel%20(athlete)&filter-type=automatic&filter-id=previous-edits#/sx| Sunday Emmanuel (athlete)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Monday%20Emoghavwe&filter-type=automatic&filter-id=previous-edits#/sx| Monday Emoghavwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Shuaibu%20Amodu&filter-type=automatic&filter-id=previous-edits#/sx| Shuaibu Amodu]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Obinna%20Eregbu&filter-type=automatic&filter-id=previous-edits#/sx| Obinna Eregbu]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efan%20Ekoku&filter-type=automatic&filter-id=previous-edits#/sx| Efan Ekoku]
* [https://en.wikipedia.org/wiki/Udeme_Ekpeyong| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
dm54haus1rrmjggtvw9cq5wj8jgrw7w
670480
670479
2026-06-29T19:11:10Z
Vivian Amalachukwu
17172
670480
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://en.wikipedia.org/wiki/Bette_people| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Isidore%20Okpewho&filter-type=automatic&filter-id=previous-edits#/sx| Isidore Okpewho]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efe%20Ronald%20Chesterfield&filter-type=automatic&filter-id=previous-edits#/sx| Efe Ronald Chesterfield]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kole%20Omotoso&filter-type=automatic&filter-id=previous-edits#/sx| Kole Omotoso]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunday%20Emmanuel%20(athlete)&filter-type=automatic&filter-id=previous-edits#/sx| Sunday Emmanuel (athlete)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Monday%20Emoghavwe&filter-type=automatic&filter-id=previous-edits#/sx| Monday Emoghavwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Shuaibu%20Amodu&filter-type=automatic&filter-id=previous-edits#/sx| Shuaibu Amodu]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Obinna%20Eregbu&filter-type=automatic&filter-id=previous-edits#/sx| Obinna Eregbu]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efan%20Ekoku&filter-type=automatic&filter-id=previous-edits#/sx| Efan Ekoku]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Udeme%20Ekpeyong&filter-type=automatic&filter-id=previous-edits#/sx| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
2e7ptuhipi2v4qzq1ihd7p70ynl9uke
670481
670480
2026-06-29T19:12:13Z
Vivian Amalachukwu
17172
670481
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://ig.wikipedia.org/wiki/Nd%E1%BB%8B_Bette| Bette people]
* [https://en.wikipedia.org/wiki/1945_Jos_riots| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Isidore%20Okpewho&filter-type=automatic&filter-id=previous-edits#/sx| Isidore Okpewho]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efe%20Ronald%20Chesterfield&filter-type=automatic&filter-id=previous-edits#/sx| Efe Ronald Chesterfield]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kole%20Omotoso&filter-type=automatic&filter-id=previous-edits#/sx| Kole Omotoso]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunday%20Emmanuel%20(athlete)&filter-type=automatic&filter-id=previous-edits#/sx| Sunday Emmanuel (athlete)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Monday%20Emoghavwe&filter-type=automatic&filter-id=previous-edits#/sx| Monday Emoghavwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Shuaibu%20Amodu&filter-type=automatic&filter-id=previous-edits#/sx| Shuaibu Amodu]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Obinna%20Eregbu&filter-type=automatic&filter-id=previous-edits#/sx| Obinna Eregbu]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efan%20Ekoku&filter-type=automatic&filter-id=previous-edits#/sx| Efan Ekoku]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Udeme%20Ekpeyong&filter-type=automatic&filter-id=previous-edits#/sx| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
eemnkiz22xq7r006gtni78hpzo34wx8
670482
670481
2026-06-29T19:13:20Z
Vivian Amalachukwu
17172
670482
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://ig.wikipedia.org/wiki/Nd%E1%BB%8B_Bette| Bette people]
* [https://ig.wikipedia.org/wiki/%E1%BB%8Cgba_aghara_nke_1945_Jos| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://en.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Isidore%20Okpewho&filter-type=automatic&filter-id=previous-edits#/sx| Isidore Okpewho]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efe%20Ronald%20Chesterfield&filter-type=automatic&filter-id=previous-edits#/sx| Efe Ronald Chesterfield]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kole%20Omotoso&filter-type=automatic&filter-id=previous-edits#/sx| Kole Omotoso]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunday%20Emmanuel%20(athlete)&filter-type=automatic&filter-id=previous-edits#/sx| Sunday Emmanuel (athlete)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Monday%20Emoghavwe&filter-type=automatic&filter-id=previous-edits#/sx| Monday Emoghavwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Shuaibu%20Amodu&filter-type=automatic&filter-id=previous-edits#/sx| Shuaibu Amodu]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Obinna%20Eregbu&filter-type=automatic&filter-id=previous-edits#/sx| Obinna Eregbu]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efan%20Ekoku&filter-type=automatic&filter-id=previous-edits#/sx| Efan Ekoku]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Udeme%20Ekpeyong&filter-type=automatic&filter-id=previous-edits#/sx| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
andg5odptnovt1gbk6raccs6ybtg8qp
670483
670482
2026-06-29T19:14:29Z
Vivian Amalachukwu
17172
670483
wikitext
text/x-wiki
<div style="background-color:#222288; border:1px solid #0088A3; border-radius:1px; border-top:1px solid #369396; padding:3px;">
<div style="background-color:#FFF; padding:1em 1ex;">
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club'''
=={{Color|#396369|'''Aim'''}}==
Hosted by the Igbo Wikimedians User Group, the project will focus on outreach, training, and edit-a-thon on Wikipedia; there will be a mini photowalk too in the school environment targeting school community members. They will be trained on creating/improving at least 50 articles on Wikipedia and 50 images on Wikimedia Commons pages, which will increase/improve the number of articles and images on Igbo Wikipedia and Wikimedia Commons. This project is also an opportunity for new Wikipedia/Wikimedia Commons contributors to learn Wikipedia documentation.
To contribute, go to [https://w.wiki/F$HZ '''ig.wikipedia.org'''] to document your entries.
== {{Color|#396996|'''Compensation 🏆🏆🏆🏆🏆🏆'''}} ==
'''Unveiling of Archbishop Hereey Technical College Ogidi Igbo Wikimedians Students Club is not a competition.''' The project will focus more on improving articles for quality assurance and contribution standards rather than ranking participants. Gift vouchers will be awarded to contributors at the end of the project. This project is not a contest; we will assign tasks to contributors and will gift vouchers to support contributors.
== {{Color|#396369|'''Review system '''}} ==
The project will adopt a collaborative quality-review system rather than a competitive scoring model. Contributions will be assessed based on translation accuracy, sourcing, formatting, completeness, and adherence to Igbo Wikiquote standards. Experienced editors and reviewers will provide feedback to contributors, ensuring high-quality contributions and meaningful collaboration throughout the campaign.
== {{Color|#666999|'''List '''}} ==
'''To be updated '''
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibironke%20Favour%20Olubamise&filter-type=automatic&filter-id=previous-edits#/sx| Ibironke Favour Olubamise]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=West%20African%20Airways%20Corporation&filter-type=automatic&filter-id=previous-edits#/sx| West African Airways Corporation]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Outline%20of%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Outline of Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akwa%20Ibom%20State%20Ministry%20of%20Transport%20and%20Petroleum&filter-type=automatic&filter-id=previous-edits#/sx| Akwa Ibom State Ministry of Transport and Petroleum]
* [https://ig.wikipedia.org/wiki/Nd%E1%BB%8B_Bette| Bette people]
* [https://ig.wikipedia.org/wiki/%E1%BB%8Cgba_aghara_nke_1945_Jos| 1945 Jos riots]
*[https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Akua%20Naru&filter-type=automatic&filter-id=previous-edits#/sx| Akua Naru]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gyedu-Blay%20Ambolley&filter-type=automatic&filter-id=previous-edits#/sx| Gyedu-Blay Ambolley]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Negrophilia&filter-type=automatic&filter-id=previous-edits#/sx| Negrophilia]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Patrice%20Bart-Williams&filter-type=automatic&filter-id=previous-edits#/sx| Patrice Bart-Williams]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Irreligion%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Irreligion in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Islam%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Islam in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Igbabonelimhin&filter-type=automatic&filter-id=previous-edits#/sx| Igbabonelimhin]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ibani%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Ibani tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ijebu%20people&filter-type=automatic&filter-id=previous-edits#/sx| Ijebu people]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ada%20the%20Country&filter-type=automatic&filter-id=previous-edits#/sx| Ada the Country]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Ichi%20(scarification)&filter-type=automatic&filter-id=previous-edits#/sx| Ichi (scarification)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Augustine%20Adetula%20Alabi&filter-type=automatic&filter-id=previous-edits#/sx| Augustine Adetula Alabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Aruan%20of%20Udo&filter-type=automatic&filter-id=previous-edits#/sx| Aruan of Udo]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Onitsha%20Market%20Literature&filter-type=automatic&filter-id=previous-edits#/sx| Onitsha Market Literature]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Eastern%20Apoi%20tribe&filter-type=automatic&filter-id=previous-edits#/sx| Eastern Apoi tribe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Pharmaceutical%20industry%20in%20Nigeria&filter-type=automatic&filter-id=previous-edits#/sx| Pharmaceutical industry in Nigeria]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunil%20Vaswani&filter-type=automatic&filter-id=previous-edits#/sx| Sunil Vaswani]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Bima%20Enagi&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Bima Enagi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Bode%20Akindele&filter-type=automatic&filter-id=previous-edits#/sx| Bode Akindele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gabriel%20Ogbechie&filter-type=automatic&filter-id=previous-edits#/sx| Gabriel Ogbechie]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Auwalu%20Abdullahi%20Rano&filter-type=automatic&filter-id=previous-edits#/sx| Auwalu Abdullahi Rano]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kase%20Lukman%20Lawal&filter-type=automatic&filter-id=previous-edits#/sx| Kase Lukman Lawal]
* [https://ig.wikipedia.org/wiki/Joseph_Akahan| Joseph Akahan]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Muhammad%20Abu%20Ali&filter-type=automatic&filter-id=previous-edits#/sx| Muhammad Abu Ali]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Binta%20Dada&filter-type=automatic&filter-id=previous-edits#/sx| Binta Dada]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Olumide%20Bakare&filter-type=automatic&filter-id=previous-edits#/sx| Olumide Bakare]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Utomi&filter-type=automatic&filter-id=previous-edits#/sx| Paul Utomi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Paul%20Obazele&filter-type=automatic&filter-id=previous-edits#/sx| Paul Obazele]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Tarila%20Thompson&filter-type=automatic&filter-id=previous-edits#/sx| Tarila Thompson]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Gbenga%20Adeyinka&filter-type=automatic&filter-id=previous-edits#/sx| Gbenga Adeyinka]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kareem%20Adepoju&filter-type=automatic&filter-id=previous-edits#/sx| Kareem Adepoju]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Zulu%20Adigwe&filter-type=automatic&filter-id=previous-edits#/sx| Zulu Adigwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Jacob%20Afolabi&filter-type=automatic&filter-id=previous-edits#/sx| Jacob Afolabi]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Afeez%20Agoro&filter-type=automatic&filter-id=previous-edits#/sx| Afeez Agoro]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Isidore%20Okpewho&filter-type=automatic&filter-id=previous-edits#/sx| Isidore Okpewho]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efe%20Ronald%20Chesterfield&filter-type=automatic&filter-id=previous-edits#/sx| Efe Ronald Chesterfield]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Kole%20Omotoso&filter-type=automatic&filter-id=previous-edits#/sx| Kole Omotoso]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Sunday%20Emmanuel%20(athlete)&filter-type=automatic&filter-id=previous-edits#/sx| Sunday Emmanuel (athlete)]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Monday%20Emoghavwe&filter-type=automatic&filter-id=previous-edits#/sx| Monday Emoghavwe]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Shuaibu%20Amodu&filter-type=automatic&filter-id=previous-edits#/sx| Shuaibu Amodu]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Obinna%20Eregbu&filter-type=automatic&filter-id=previous-edits#/sx| Obinna Eregbu]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Efan%20Ekoku&filter-type=automatic&filter-id=previous-edits#/sx| Efan Ekoku]
* [https://ig.wikipedia.org/w/index.php?title=Special:ContentTranslation&from=en&to=ig&campaign=ulsmissinglanguages&page=Udeme%20Ekpeyong&filter-type=automatic&filter-id=previous-edits#/sx| Udeme Ekpeyong]
* [https://ig.wikipedia.org/wiki/Special:ContentTranslation?from=en&to=ig&page=David+Imonitie| David Imonitie]
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
fxp494lyo3roexs4fyn4zrblgam4gys
Event:Creating and Standardizing Dialectal Variations of Igbo Words on Igbo Wiktionary
1728
76958
670504
661577
2026-06-30T11:02:21Z
Celetex
13524
670504
wikitext
text/x-wiki
Igbo Wiktionary already has numerous entries, but many still lack proper dialectal variations (Olumba), regional usage examples, and standardization across dialects.
This project aims to improve the completeness and quality of Igbo Wiktionary entries by focusing on creating and standardizing dialectal variations of Igbo words. Through the active participation of experienced editors, the project will document variations from major dialects such as Anambra (Nnewi, Awka, Onitsha), Imo (Owerri), Enugu (Nsukka), Abia (Ngwa), and Ebonyi (Afikpo).
This is essential to ensure that Igbo speakers, researchers, and linguists have access to more accurate, inclusive, and representative linguistic resources.
== Focus ==
This project will focus primarily on creating new entries and improving existing ones on Igbo Wiktionary with special emphasis on dialectal variations.
These improvements will include:
* Adding and expanding Olumba (Dialectal Variations) sections with regional spellings and example sentences
* Documenting variations from Anambra (Nnewi, Awka, Onitsha), Imo (Owerri), Enugu (Nsukka), Abia (Ngwa), and Ebonyi (Afikpo)
* Adding relevant usage examples from different dialects
* Standardizing the presentation of dialectal information
'''Note:''' This project is not a contest-based project.
== Timeline ==
* 26th June – 31st July 2026
== Venue ==
Kenneth Dike Library, Awka, Anambra State
== Work List ==
[https://meta.wikimedia.org/wiki/Igbo_Wikimedians_User_Group/Projects/Dialectal_Variations_Igbo_Wiktionary_2026#Work_List]
== Outreach Dashboard ==
https://outreachdashboard.wmflabs.org/courses/Igbo_Wikimedians_User_Group/Creating_and_Standardizing_Dialectal_Variations_of_Igbo_Words_on_Igbo_Wikti
[[Otú:Mmemme]]
[[Otú:Mmemme 2026]]
83drw8678sqg37rrdgk4t89f6rryl0x
Event:Let's Fix it - Enhancing References on Igbo Wikipedia.
1728
77001
670446
657891
2026-06-29T18:39:40Z
Timzy D'Great
12485
/* Let's Fix it - Enhancing References on Igbo Wikipedia */
670446
wikitext
text/x-wiki
{| cellpadding="4" cellspacing="10" style="margin:auto;"
|[[File:Igbo Wikimedians User Group Logo.svg|200px|link=https://meta.wikimedia.org/wiki/Igbo_Wikimedians_User_Group]]
|}
=='''Let's Fix it - Enhancing References on Igbo Wikipedia'''==
The Igbo Wikipedia currently contains over 2,000 articles with reference errors, while thousands of other articles are either poorly referenced or lack adequate citations to support their content. These issues affect the credibility, reliability, and verifiability of information on the platform, making it difficult for readers to trust the accuracy of the articles. This project is designed to address these challenges by equipping participants with the knowledge and practical skills needed to identify and fix reference errors, as well as add high-quality, reliable citations to Wikipedia articles. Through hands-on training sessions, participants will learn Wikipedia's referencing guidelines, how to locate trustworthy sources, and the proper techniques for formatting and inserting citations. By improving participants' understanding of best referencing practices, the project aims to enhance the overall quality of content on the Igbo Wikipedia and increase the number of well-sourced articles on the Igbo Wikipedia
== '''Project Timeline''' ==
*Project Launch/Physical event - ''' Saturday, 4th July 2026
**Time - ''' 11:00AM UTC+1
*Edit-A-Thon start date - ''' Saturday, 4th July 2026
**Time - ''' 11:00AM UTC+1
*Edit-A-Thon end date - ''' Saturday, 19th July 2026
**Time - ''' 12:00AM UTC+1
== '''Facilitators''' ==
# [[User:Timzy D'Great|Timzy D'Great]] - Project Lead/Facilitator
== '''Expectations''' ==
At the end of this project, the following should be achieved:
# Recruit of new members into the Igbo Wikimedians User Group and training on fixing reference errors on Igbo Wikipedia {{doing}}
# Fixing reference errors in 800 Igbo Wikipedia articles {{doing}}
== '''Target audience''' ==
* Members of the Igbo Wikimedians User Group
* Wikimedia grantees
* Igbo language speakers
* Students and researchers
* Anyone interested in contributing to Wikimedia projects in Igbo
== '''Outcome''' ==
'''TBD'''
== '''Gallery''' ==
'''TBD'''
[[Òtù:Mmemme]]
[[Otú:Mmemme 2026]]
eazqfm32ik5p8kpopq3u16riwj41fan
Ebe Nchekwa Obodo Lake Télé
0
77107
665851
663297
2026-06-29T12:37:31Z
Adimora chidinma
15845
665851
wikitext
text/x-wiki
{{short description|Protected area in the Republic of the Congo}}
{{Infobox protected area
| name = Lac Télé Community Reserve
| alt_name =
| image =
| image_alt =
| image_caption =
| image_size =
| map = Republic of the Congo
| relief = 1
| map_alt =
| map_caption = Location in the Congo Republic
| map_width =
| location =
| nearest_city = [[Mbandaka]]
| coordinates = {{coord|1.347589|N|17.154121|E|format=dms|display=inline,title}}
| coords_ref =
| area = {{convert|4389|km2}}
| established = 10 May 2001
| visitation_num =
| visitation_year =
| governing_body =
| url =
| module = {{Designation list
| embed = yes
| designation1 = Ramsar
| designation1_offname = Lac Télé / [[Likouala-aux-herbes]]
| designation1_date = 18 June 1998
| designation1_number = 950<ref>{{Cite web|title=Sangha-Nouabalé-Ndoki|website=[[Ramsar Convention|Ramsar]] Sites Information Service|url=https://rsis.ramsar.org/ris/950|accessdate=25 April 2018}}</ref>}}
}}
'''Lake Télé Community Reserve''' bụ ebe a na-echebe na Republic of the Congo.
== Akụkọ ihe mere eme ==
E guzobere ebe nchekwa ahụ na 10 Mee 2001. N'ọnwa Ọgọstụ afọ 2010, nkwekọrịta imekọ ihe ọnụ n'etiti gọọmentị nke Republic of the Congo na [[Democratic Republic of the Congo]] (DRC) na Lake Tele - Lake Tumba landscape nyere maka ịmepụta mpaghara echedoro mba gụnyere Lake Télé Community Reserve na mpaghara Ngiri-Tumba-Maindombe na DRC.<ref>{{Cite web|url=http://cmsdata.iucn.org/downloads/accord_sur_la_binationale_lac_tele_lac_tumba.pdf|title=Accord de coopération entre les gouvernements de la République démocratique du Congo et la République du Congo relatif à la mise en place de la binationale lac Télé - lac Tumba|date=5 August 2010|language=French|publisher=COMMISSION DES FORETS D'AFMOUE CENTRALE|accessdate=2012-01-30|archivedate=2016-03-03|archiveurl=https://web.archive.org/web/20160303171425/http://cmsdata.iucn.org/downloads/accord_sur_la_binationale_lac_tele_lac_tumba.pdf}}</ref>
== Ọdịdị ala na gburugburu ebe obibi ==
Ogige ahụ bụ nnukwu mpaghara nke oké ọhịa mmiri na-enweghị ike iru, na-enweghị okporo ụzọ. Ite na-ekpuchi 4,389 square kilomita (1,695 sq mi) gburugburu Lake Télé.<ref>{{Cite web|url=http://protectedplanet.net/sites/313494|title=Lac Télé Community Reserve|work=Protected Planet|accessdate=2012-01-30}}</ref> Ala dị n'okpuru ebe nchekwa ahụ nwere nnukwu ụlọ nkwakọba ihe nke jupụtara na carbon. Nchọpụta a na-eme ka nchekwa nke mpaghara ahụ dị oke mkpa, dị ka a ga-asị na a na-enye ya nsogbu, carbon nwere ike ịbanye n'ime ikuku na-emebi okpomọkụ ụwa. N'ihi nchọpụta a, Wildlife Conservation Society kwadoro mgbasawanye nke ebe nchekwa ahụ.<ref name="WaPo">{{Cite news|author=Harvey|first=Chelsea|title=Scientists just discovered a massive pool of carbon in central Africa that nobody knew was there|url=https://www.washingtonpost.com/news/energy-environment/wp/2017/01/11/scientists-just-discovered-a-massive-pool-of-carbon-in-central-africa-that-nobody-knew-was-there/|accessdate=13 January 2017|work=Washington Post|date=11 January 2017}}</ref>
=== Anụ Ọhịa ===
N'afọ 2006 na 2007, ndị nchọpụta sitere na otu Nchekwa Anụmanụ nke dị na US nyochachara mpaghara ahụ, wee chọta ihe akaebe na ọnụ ọgụgụ mmadụ dị 125,000 nke gorillas dị n'ebe ọdịda anyanwụ. Nke a karịrị ọnụọgụgụ mmadụ niile a na-eme atụmatụ ugbu a na ụdị anụmanụ a.<ref>{{Cite web|url=http://articles.cnn.com/2008-08-05/world/congo.gorillas_1_gorillas-researchers-congolese?_s=PM:WORLD|title=More than 100,000 rare gorillas found in Congo|date=August 5, 2008|work=CNN World|accessdate=2012-01-30|archiveurl=https://web.archive.org/web/20120120015018/http://articles.cnn.com/2008-08-05/world/congo.gorillas_1_gorillas-researchers-congolese?_s=PM:WORLD|archivedate=January 20, 2012}}</ref> BirdLife International akpọọla ogige ntụrụndụ a Mpaghara Nnụnụ Dị Mkpa (IBA) n'ihi na ọ na-akwado ọtụtụ ụdị nnụnụ dị iche iche.<ref name="bli">{{Cite web|url=https://datazone.birdlife.org/site/factsheet/lake-t%C3%A9l%C3%A9-community-reserve-iba-congo|title=Lake Télé Community Reserve|author=<!--Not stated-->|date=2024|work=BirdLife Data Zone|publisher=BirdLife International|accessdate=2024-12-03}}</ref>
== Edensibịa ==
{{Reflist}}
jdho05awakghia3jvtn1vunolhnwfjr
Ńkàtá ojiarụ:Chinemeremo
3
77113
665847
2026-06-29T12:00:48Z
DolphybBot
61063
Nabata onye ohuru na Igbo Wikipedia! (bot)
665847
wikitext
text/x-wiki
{{Nnọọ|username=Chinemeremo|bot=[[Ojiarụ:DolphybBot|DolphybBot]] ([[Ńkàtá ojiarụ:DolphybBot|ṅkátá]]) 12:00, 29 Jụn 2026 (UTC)}}
fq41xa6e28ds0x7mh1rh8u58lc13svs
Ńkàtá ojiarụ:Aluta editor
3
77114
665848
2026-06-29T12:00:58Z
DolphybBot
61063
Nabata onye ohuru na Igbo Wikipedia! (bot)
665848
wikitext
text/x-wiki
{{Nnọọ|username=Aluta editor|bot=[[Ojiarụ:DolphybBot|DolphybBot]] ([[Ńkàtá ojiarụ:DolphybBot|ṅkátá]]) 12:00, 29 Jụn 2026 (UTC)}}
fxzxjej043pp3nvdg543dae2jkwlxd4
Ńkàtá:Atiqa Odho
1
77115
665849
2026-06-29T12:18:18Z
~2026-37467-98
63344
/* MAAM-- YOUR FAST BOY FRIEND GENERAL PERVEAZ MUSHERAF [LATE] ---BADGE MADE 29-L-C LONG COURSE --1990---IN GROUP TEST ARCHERY STIFF THREE HOURS TESTING ---SERIAL NO --4 -- GENERAL PERVEAZ MUSHERAF --SERIAL NO-5 ---P-A-F--CADET -M-M- ALAAM BASE MINAWALI --REGISTER NO-SIX [6] BADGE 1974-75 --PELICAN CANTONMENT STATE BHAWALPUR [QUEEN ELIZB ETH U-K OR GERMAN CHANCELLERY JOINT FINANCE U-K GERMANY WITH B ISMARK JINHAA M-O-U APPROVAL GERMAN G-3 FIRST TIME FOR PAKISTAN EVERY SOLIDER DEPOISITE ONE K-...
665849
wikitext
text/x-wiki
== MAAM-- YOUR FAST BOY FRIEND GENERAL PERVEAZ MUSHERAF [LATE] ---BADGE MADE 29-L-C LONG COURSE --1990---IN GROUP TEST ARCHERY STIFF THREE HOURS TESTING ---SERIAL NO --4 -- GENERAL PERVEAZ MUSHERAF --SERIAL NO-5 ---P-A-F--CADET -M-M- ALAAM BASE MINAWALI --REGISTER NO-SIX [6] BADGE 1974-75 --PELICAN CANTONMENT STATE BHAWALPUR [QUEEN ELIZB ETH U-K OR GERMAN CHANCELLERY JOINT FINANCE U-K GERMANY WITH B ISMARK JINHAA M-O-U APPROVAL GERMAN G-3 FIRST TIME FOR PAKISTAN EVERY SOLIDER DEPOISITE ONE K-G GOLD INSURANCE SOLIDER TO STATE GERMANY THEN ISSUE GERMAN G-3 RIFAL FROM GERMAN GOVT---1989 REGISTER SOLIDER OF G-3 RIFFAL ---WHOLE SERVICE WHEN OFFICER OUT HIS BUDDY SOLIDER UP-HOLD G-3 TILL RETIREMENT OFFICER ON DIFFERENT WAR COMBAT BUDDY SOLIDER PLAY RUN RIFFAL -----ASIM NEVID --NASSAA ASTRONAUTS U-S-A FIVE TIME FOOT STEP MOON MARAS PLATOO VEINAS -----MEET YOU IN YOUR DEFENCE KARACHI HOME NEIGHBORING DEFENCE HOME GENERAL PAERVEAZ MUSHERAF ------YOUR CAST ODHOO I-G KARACHI ODHOO STILL IN STATE JOB ---ALSO YOUR HUSBAND ---- ==
DEAR MAAM - - MY FIVE TO SIX DAUGHTER BLOOD LIVE IN KARACHI SUCH AS NAME ---SAAJAAL ALI ----FATIMA BHUTOO E-T-C YOU HOLD ON KARACHI I-G POLICE SEAT PATRONAGE MY SIX DAUGHTERS IN KARACHI -----YOUR HUSBAND JAVEAD HOLD CONSTRUCTION COMPANY OR PROCLAMATION IN PUBLIC'S EXPERT IN HIS FIELD ---DEAR MAAM I HAVE SEVEN MARLAA HOME IN JUDICIAL COLONY PHASE TWO LALLAA ZAAR LAHORE ---I WISH TO UNDERGROUND FLOOR TO MADE FROM YOU IF YOU MADE IT ON YOUR EXT-REAM REPARTEE ----ASIM NEVID --NASSAA ASTRONAUTS U-S-A FIELD MARSHAL NATOO WORLD WAR THREE U-KAREENAA --- HOUSE NO-50-A JUDICIAL COLONY PHASE TWO LALLAA ZAAR LAHORE -----PRAYER ----- [[Ọpụrụiche:Contributions/~2026-37467-98|~2026-37467-98]] ([[Ńkàtá ojiarụ:~2026-37467-98|talk]]) 12:18, 29 Jụn 2026 (UTC)
hfas98q5y07tu497g1zgb78eec49rzl
665850
665849
2026-06-29T12:18:29Z
Quinlan83
12227
Requesting deletion
665850
wikitext
text/x-wiki
{{delete|Test page}}== MAAM-- YOUR FAST BOY FRIEND GENERAL PERVEAZ MUSHERAF [LATE] ---BADGE MADE 29-L-C LONG COURSE --1990---IN GROUP TEST ARCHERY STIFF THREE HOURS TESTING ---SERIAL NO --4 -- GENERAL PERVEAZ MUSHERAF --SERIAL NO-5 ---P-A-F--CADET -M-M- ALAAM BASE MINAWALI --REGISTER NO-SIX [6] BADGE 1974-75 --PELICAN CANTONMENT STATE BHAWALPUR [QUEEN ELIZB ETH U-K OR GERMAN CHANCELLERY JOINT FINANCE U-K GERMANY WITH B ISMARK JINHAA M-O-U APPROVAL GERMAN G-3 FIRST TIME FOR PAKISTAN EVERY SOLIDER DEPOISITE ONE K-G GOLD INSURANCE SOLIDER TO STATE GERMANY THEN ISSUE GERMAN G-3 RIFAL FROM GERMAN GOVT---1989 REGISTER SOLIDER OF G-3 RIFFAL ---WHOLE SERVICE WHEN OFFICER OUT HIS BUDDY SOLIDER UP-HOLD G-3 TILL RETIREMENT OFFICER ON DIFFERENT WAR COMBAT BUDDY SOLIDER PLAY RUN RIFFAL -----ASIM NEVID --NASSAA ASTRONAUTS U-S-A FIVE TIME FOOT STEP MOON MARAS PLATOO VEINAS -----MEET YOU IN YOUR DEFENCE KARACHI HOME NEIGHBORING DEFENCE HOME GENERAL PAERVEAZ MUSHERAF ------YOUR CAST ODHOO I-G KARACHI ODHOO STILL IN STATE JOB ---ALSO YOUR HUSBAND ---- ==
DEAR MAAM - - MY FIVE TO SIX DAUGHTER BLOOD LIVE IN KARACHI SUCH AS NAME ---SAAJAAL ALI ----FATIMA BHUTOO E-T-C YOU HOLD ON KARACHI I-G POLICE SEAT PATRONAGE MY SIX DAUGHTERS IN KARACHI -----YOUR HUSBAND JAVEAD HOLD CONSTRUCTION COMPANY OR PROCLAMATION IN PUBLIC'S EXPERT IN HIS FIELD ---DEAR MAAM I HAVE SEVEN MARLAA HOME IN JUDICIAL COLONY PHASE TWO LALLAA ZAAR LAHORE ---I WISH TO UNDERGROUND FLOOR TO MADE FROM YOU IF YOU MADE IT ON YOUR EXT-REAM REPARTEE ----ASIM NEVID --NASSAA ASTRONAUTS U-S-A FIELD MARSHAL NATOO WORLD WAR THREE U-KAREENAA --- HOUSE NO-50-A JUDICIAL COLONY PHASE TWO LALLAA ZAAR LAHORE -----PRAYER ----- [[Ọpụrụiche:Contributions/~2026-37467-98|~2026-37467-98]] ([[Ńkàtá ojiarụ:~2026-37467-98|talk]]) 12:18, 29 Jụn 2026 (UTC)
m3weknje27q471j3lumqgg3wd774g1p
Templeeti:Infobox protected area
10
77119
666650
2005-10-15T19:20:14Z
Papayoung
31258
Just getting started
666650
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:both;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #EEEEEE;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- style="vertical-align: top;"
| colspan="2" style="font-size: smaller;" | {{footnote}}
|}
<br style="clear:both;" />
anhixk09ynkvepzeoelt9g7rwv1fyfr
666652
666650
2005-10-16T03:07:22Z
Papayoung
31258
Still working on it...
666652
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:both;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{location}}}
|- class="hiddenStructure{{{coordinates}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{{coordinates}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|- class="hiddenStructure{{{footnote}}}" style="vertical-align: top;"
| colspan="2" style="font-size: smaller;" | {{footnote}}
|}
<br style="clear:both;" />
enjz7qmwzjsu5oxwoa5lcm669hif63b
666653
666652
2005-10-16T03:20:33Z
Papayoung
31258
666653
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:both;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{coordinates}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{{coordinates}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|- class="hiddenStructure{{{footnote}}}" style="vertical-align: top;"
| colspan="2" style="font-size: smaller;" | {{footnote}}
|}
<br style="clear:both;" />
j092z0op2zmuvrpoidmwzjr3fpksqow
666654
666653
2005-10-16T03:22:22Z
Papayoung
31258
666654
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:both;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{coordinates}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{{coordinates}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|- class="hiddenStructure{{{footnote}}}" style="vertical-align: top;"
| colspan="2" style="font-size: smaller;" | {{footnote|{{{footnote}}}}}
|}
<br style="clear:both;" />
50rtk6zhyr05z588od53o1opet8rwpj
666655
666654
2005-10-16T03:29:33Z
Papayoung
31258
666655
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{coordinates}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{{coordinates}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|}
n0awynjjun0pvv19t8pxaiva4dldj3m
666656
666655
2005-10-16T03:49:49Z
Papayoung
31258
666656
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|21em|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{coordinates}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{{coordinates}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|}
e12v5mqoks69k9a4f15ghgnds6c70rq
666657
666656
2005-10-16T04:01:28Z
Papayoung
31258
666657
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|21em|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{coordinates}}}" style="vertical-align: top;"
| '''[[Geographic coordinates|Coordinates]]:'''
| {{coor dm|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} ({{{visitation_year}}})
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|}
88r9hnezbbhi3dxt7xlm9htwi0bb3f0
666658
666657
2005-10-16T04:03:57Z
Papayoung
31258
666658
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|21em|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{coordinates}}}" style="vertical-align: top;"
| '''[[Geographic coordinates|Coordinates]]:'''
| {{coor dm|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|}
985wme2xll0q9aimgjrb5hof2yex2bn
666659
666658
2005-10-16T04:13:28Z
Papayoung
31258
666659
wikitext
text/x-wiki
{| class="infobox" style="width: 22em;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 22em; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|21em|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''[[Geographic coordinates|Coordinates]]:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
cq9heyodkqye4zzbei32qwc2gk52jxs
666660
666659
2005-10-16T04:15:21Z
Papayoung
31258
666660
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''[[Geographic coordinates|Coordinates]]:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
e2p97ihd94j2qr3gzcw78ljq2fy1lwz
666661
666660
2005-10-16T04:16:58Z
Papayoung
31258
666661
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''[[Geographic coordinates|Coordinates]]:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_direction}}}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
4hmnqd8xdmq7i2b9y02qlhnxsf60hoh
666662
666661
2005-10-16T04:20:18Z
Papayoung
31258
666662
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''[[Geographic coordinates|Coordinates]]:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_direction}}}||{{{long_degrees}}}|{{{long_minutes}}}|{{{long_direction}}|}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
s52j1sfrtkoyq6qb5dl6e2v8b8je475
666663
666662
2005-10-16T04:21:32Z
Papayoung
31258
666663
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''[[Geographic coordinates|Coordinates]]:'''
| {{Coor_dm|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_direction}}|}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
2bcp89ab8o8rkz0765vpe4vgo3ltcel
666664
666663
2005-10-16T04:21:51Z
Papayoung
31258
666664
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''[[Geographic coordinates|Coordinates]]:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
e2p97ihd94j2qr3gzcw78ljq2fy1lwz
666665
666664
2005-10-16T04:38:14Z
Papayoung
31258
666665
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''[[Geographic coordinates|Coordinates]]:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{lat_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
l30itfk5vziu4t4y5mialeqf2bcxu08
666666
666665
2005-10-16T04:46:43Z
Papayoung
31258
666666
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{designation}}}" style="vertical-align: top;"
| '''Designation:'''
| {{{designation}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
7iotmwgf3sfe81ul84k8e9vq5718dlj
666667
666666
2005-10-16T17:40:17Z
Papayoung
31258
666667
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="text-align: center; " | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top; background-color: #B5954B;"
| '''[[IUCN]] Category:'''
| {{{iucn}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
814vg4jzxloug29y51hhl1qnxdeji6p
666668
666667
2005-10-16T18:06:14Z
Papayoung
31258
666668
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;" cellspacing="0" cellpadding="2"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| '''[[IUCN]] Category:'''
| {{Infobox_protected_area/IUCN_{{{iucn}}}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
h90rh2lje97gnr3y9r7ened6on4psgg
666669
666668
2005-10-16T18:28:58Z
Papayoung
31258
Better template inclusion
666669
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn}}}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
rjh5gvony9138l5agvhxj7it732jhdb
666671
666669
2005-10-16T22:56:40Z
Papayoung
31258
Add coordinates (again)
666671
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn}}}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{coordinates}}}" style="vertical-align: top;"
| '''[[Geographic coordinates|Coordinates]]:'''
| {{{coordinates}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
pnyh6v0qkvm3462ds3vumjvx7w0edm6
666673
666671
2005-10-16T22:57:51Z
Papayoung
31258
rm link
666673
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{iucn}}}" style="vertical-align: top;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn}}}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{coordinates}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{{coordinates}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
qoyeut4gigzfk5iasmm1ayj15spd52n
666674
666673
2005-10-16T23:24:53Z
Papayoung
31258
Parameter name change
666674
wikitext
text/x-wiki
{| class="infobox" style="width: 300px;"
! colspan="2" style="font-size: x-small; color: #900;" | This template is still under development. ([[Template_talk:Infobox_protected area|details]])
|}
<br style="clear:right;" />
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{iucn_category}}}" style="vertical-align: top;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{coordinates}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{{coordinates}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
2yj3wwmgkawsews5r81jicijl1j644s
666675
666674
2005-10-16T23:34:32Z
Papayoung
31258
rm under-development notice
666675
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{iucn_category}}}" style="vertical-align: top;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{coordinates}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{{coordinates}}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
6heo7wr8axjijuj9g9o7h59d2raa9un
666676
666675
2005-10-17T03:29:18Z
Papayoung
31258
Reverted coordinates to original system
666676
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{image}}}" style="vertical-align: top;"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{iucn_category}}}" style="vertical-align: top;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| [[{{{established}}}]]
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
qct546a057orx2lfujmufigw0htlh5o
666678
666676
2005-10-18T15:57:02Z
Papayoung
31258
Moved IUCN category, de-linked date
666678
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
94la9z91nz54y2kfcfarrkdde0r2y3m
666681
666678
2005-10-19T16:49:09Z
Papayoung
31258
Testing narrower width
666681
wikitext
text/x-wiki
{| class="infobox" style="width: 262px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|250px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
oe91gq7bdxzpwcbuxg9vln87j0vjwky
666682
666681
2005-10-19T17:01:36Z
Papayoung
31258
Return to previous width
666682
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">[[Image:{{{image}}}|288px|{{{caption}}}]]</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
94la9z91nz54y2kfcfarrkdde0r2y3m
666683
666682
2005-10-21T15:48:19Z
Papayoung
31258
Added sub-template Superimpose
666683
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.svg
| float_width = 10px
| float_caption = {{{name}}}
| x = {{{locator_x}}}px
| y = {{{locator_y}}}px
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
m34ua76vx3k9qaq1j0swleukjrbvysv
666684
666683
2005-10-21T15:55:57Z
Papayoung
31258
Removed pixel specification (now in the Superimpose template itself)
666684
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.svg
| float_width = 10px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
6gppax6k6j121j8uubr3l5v8ok88x0w
666685
666684
2005-10-26T02:07:20Z
Papayoung
31258
Use GIF locator dot rather than SVG -- for now
666685
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 10px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
iu6sq7mvukq93tm3jzyreh8k0phbak2
666686
666685
2005-10-30T23:00:36Z
Papayoung
31258
8-pixel locator dot
666686
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
ldn8nx0ltsr43vskdq9zqdq55sw4szq
666687
666686
2005-10-31T06:32:00Z
Papayoung
31258
Direct browsers to discussion page
666687
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Date Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
k5kq489u8g9zwz1inc2c4w4sxs00iqg
666688
666687
2005-10-31T19:12:41Z
Eoghanacht
627
change "Date Established" to just "Established"
666688
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
830scpuzkqu28w3c7jcjcsibagaobce
666690
666688
2005-11-06T00:48:27Z
Hottentot
26985
fmt
666690
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
cumymaqsxdgls9hhie56uesz4b6t5du
666692
666690
2005-11-06T01:00:25Z
Hottentot
26985
666692
wikitext
text/x-wiki
{| {{Prettyinfobox}}
| style="background:#9BCB65;" align="center" colspan=2 | <font size="+1">'''{{{name}}}'''</font>
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| align="center" colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
fstdtfuxfuiagqgyfwqopn520n0eukh
666694
666692
2005-11-06T01:02:00Z
Hottentot
26985
666694
wikitext
text/x-wiki
{| {{Prettyinfobox}}
| style= align="center" colspan=2 | <font size="+1">'''{{{name}}}'''</font>
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| align="center" colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
d38vvijauu6keqfb4j44js0cjuxxr3j
666695
666694
2005-11-06T23:00:34Z
Papayoung
31258
Revert; please see [[User_talk:Hottentot#Infobox_Protected_Area_Template]]
666695
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}
<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
830scpuzkqu28w3c7jcjcsibagaobce
666696
666695
2005-11-07T00:06:37Z
Hottentot
26985
fmt (not reverting)
666696
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top; white-space: nowrap;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top; white-space: nowrap;"
| '''Governing Body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
cumymaqsxdgls9hhie56uesz4b6t5du
666697
666696
2005-11-08T21:25:07Z
Papayoung
31258
Fixed CSS nowrap so it doesn't force the table to be too wide with long entries
666697
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest City:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing Body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
4ahznnp6adt5dv0jkiae6npo7sbqzy7
666698
666697
2005-11-10T12:32:50Z
Bobblewik
47045
Sentence case. Hope this is OK. I don't think it is controversial. Otherwise, please revert and start a discussion in talk page.
666698
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
aitdrgjrut463wrd7zumg487m7q815y
666700
666698
2005-11-10T14:00:37Z
Eoghanacht
627
adding a nonbreaking space after the coor template, to attempt to fix a text wrapping problem due to the automatically displaying "external link" symbol
666700
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
rioznt1lvg6ijapkzduunywwvb6ei1e
666702
666700
2005-11-10T14:02:42Z
Eoghanacht
627
rv to [[User:Bobblewik|Bobblewik's]] edit, my experiment did not work, see discussion
666702
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in [[{{{visitation_year}}}]])
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
aitdrgjrut463wrd7zumg487m7q815y
666704
666702
2005-12-06T12:35:37Z
Bobblewik
47045
Reduce linking to solitary years and months in accordance with the Manual of style. I think this is unremarkable, if not, feel free to discuss.
666704
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in {{{visitation_year}}})
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
lrms9a2oxxpn85nia8o7zt2hfb3k8id
666707
666704
2005-12-14T01:36:47Z
Jacoplane
41876
cat
666707
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in {{{visitation_year}}})
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude>
<noinclude>
[[Category:Infobox templates|{{PAGENAME}}]]
</noinclude>
82r65b2eb8ptgut8hwvs6r7uswtz77a
666709
666707
2005-12-14T06:25:55Z
Khoikhoi
28300
666709
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox_protected_area/IUCN_{{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x}}}
| y = {{{locator_y}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor_dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in {{{visitation_year}}})
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template_talk:Infobox_protected_area|discussion]] page for examples and a guide to using it.
</noinclude><noinclude>
[[Category:Infobox templates|{{PAGENAME}}]]
</noinclude>
dxr766dbyn4um31rr30144409bnzu5y
666712
666709
2005-12-24T23:02:06Z
Dbenbenn
35
add default blank to locator_x and locator_y
666712
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in {{{visitation_year}}})
|- class="hiddenStructure{{{governing_body}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|{{PAGENAME}}]]
</noinclude>
dznhxbdka11ym15vfj0ah1z3qgcmta8
666714
666712
2005-12-24T23:05:45Z
Dbenbenn
35
default null values for some parameters. Now if you fail to specify "governing_body", the "Governing body:" entry is hidden
666714
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location|}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location}}}
|- class="hiddenStructure{{{nearest_city|}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city}}}
|- class="hiddenStructure{{{lat_degrees|}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees}}}|{{{lat_minutes}}}|{{{lat_seconds}}}|{{{lat_direction}}}|{{{long_degrees}}}|{{{long_minutes}}}|{{{long_seconds}}}|{{{long_direction}}}|}}
|- class="hiddenStructure{{{area|}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area}}}
|- class="hiddenStructure{{{established|}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established}}}
|- class="hiddenStructure{{{visitation_num|}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num}}} (in {{{visitation_year}}})
|- class="hiddenStructure{{{governing_body|}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|{{PAGENAME}}]]
</noinclude>
1y49ifh9xys3bn6u42lv1r8gb51cqo2
666715
666714
2005-12-25T20:14:51Z
Dbenbenn
35
default null value for more parameters
666715
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}}}}
|- class="hiddenStructure{{{image}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> {{{caption}}}
|- class="hiddenStructure{{{location|}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class="hiddenStructure{{{nearest_city|}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class="hiddenStructure{{{lat_degrees|}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class="hiddenStructure{{{area|}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class="hiddenStructure{{{established|}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class="hiddenStructure{{{visitation_num|}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class="hiddenStructure{{{governing_body|}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|{{PAGENAME}}]]
</noinclude>
tng3nasxh25hib4p4a51ffu065aaj60
666718
666715
2005-12-26T21:33:45Z
Dbenbenn
35
more default null values for parameters
666718
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class="hiddenStructure{{{image|}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> {{{caption|}}}
|- class="hiddenStructure{{{location|}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class="hiddenStructure{{{nearest_city|}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class="hiddenStructure{{{lat_degrees|}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class="hiddenStructure{{{area|}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class="hiddenStructure{{{established|}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class="hiddenStructure{{{visitation_num|}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class="hiddenStructure{{{governing_body|}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|{{PAGENAME}}]]
</noinclude>
p8d7ertluai2n52411je0qs59617t7l
666720
666718
2006-01-16T23:22:29Z
Khoikhoi
28300
center caption
666720
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class="hiddenStructure{{{image|}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = <center>{{{caption|}}}</center>
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> {{{caption|}}}
|- class="hiddenStructure{{{location|}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class="hiddenStructure{{{nearest_city|}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class="hiddenStructure{{{lat_degrees|}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class="hiddenStructure{{{area|}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class="hiddenStructure{{{established|}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class="hiddenStructure{{{visitation_num|}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class="hiddenStructure{{{governing_body|}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|{{PAGENAME}}]]
</noinclude>
9iss1a7qqoyvp8xyb7g7muakuv8o8gt
666721
666720
2006-01-16T23:22:51Z
Khoikhoi
28300
rv
666721
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class="hiddenStructure{{{image|}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> {{{caption|}}}
|- class="hiddenStructure{{{location|}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class="hiddenStructure{{{nearest_city|}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class="hiddenStructure{{{lat_degrees|}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class="hiddenStructure{{{area|}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class="hiddenStructure{{{established|}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class="hiddenStructure{{{visitation_num|}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class="hiddenStructure{{{governing_body|}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|{{PAGENAME}}]]
</noinclude>
p8d7ertluai2n52411je0qs59617t7l
666723
666721
2006-01-16T23:23:37Z
Khoikhoi
28300
666723
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class="hiddenStructure{{{image|}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = <center>{{{name|}}}</center>
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> {{{caption|}}}
|- class="hiddenStructure{{{location|}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class="hiddenStructure{{{nearest_city|}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class="hiddenStructure{{{lat_degrees|}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class="hiddenStructure{{{area|}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class="hiddenStructure{{{established|}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class="hiddenStructure{{{visitation_num|}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class="hiddenStructure{{{governing_body|}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|{{PAGENAME}}]]
</noinclude>
fbpohurqpiwiwbueuxc4u0hrzkn3gx5
666726
666723
2006-01-16T23:24:00Z
Khoikhoi
28300
666726
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class="hiddenStructure{{{image|}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = <center>{{{caption|}}}</center>
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = <center>{{{name|}}}</center>
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> {{{caption|}}}
|- class="hiddenStructure{{{location|}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class="hiddenStructure{{{nearest_city|}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class="hiddenStructure{{{lat_degrees|}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class="hiddenStructure{{{area|}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class="hiddenStructure{{{established|}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class="hiddenStructure{{{visitation_num|}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class="hiddenStructure{{{governing_body|}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|{{PAGENAME}}]]
</noinclude>
d5bc0rs242v3nx8815j8z0f9f8skr8j
666727
666726
2006-01-16T23:24:23Z
Khoikhoi
28300
666727
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class="hiddenStructure{{{image|}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class="hiddenStructure{{{location|}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class="hiddenStructure{{{nearest_city|}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class="hiddenStructure{{{lat_degrees|}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class="hiddenStructure{{{area|}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class="hiddenStructure{{{established|}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class="hiddenStructure{{{visitation_num|}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class="hiddenStructure{{{governing_body|}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|{{PAGENAME}}]]
</noinclude>
p1aadu9ziv1injipwa96l6nrduu7rzd
666728
666727
2006-01-22T18:52:12Z
AntL
43020
Changed category name
666728
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class="hiddenStructure{{{image|}}}"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class="hiddenStructure{{{location|}}}" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class="hiddenStructure{{{nearest_city|}}}" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class="hiddenStructure{{{lat_degrees|}}}" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class="hiddenStructure{{{area|}}}" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class="hiddenStructure{{{established|}}}" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class="hiddenStructure{{{visitation_num|}}}" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class="hiddenStructure{{{governing_body|}}}" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|Protected area]]
</noinclude>
e9j32tac7cq010qu4glwgrzz434193a
666729
666728
2006-01-23T18:05:13Z
Ligulem
14475
code update. see [[Wikipedia:Conditional expressions]]
666729
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|Protected area]]
</noinclude>
4s6q8qmqn809qs8ilect980y8onh8h4
666730
666729
2006-03-02T22:02:54Z
192.165.166.4
666730
wikitext
text/x-wiki
[[Image:Prince Albert Piercing.jpg]]
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|Protected area]]
</noinclude>
kq59yo560778sh6hu3oq16qi10q1moz
666732
666730
2006-03-02T22:03:06Z
Curps
38287
Reverted edits by [[Special:Contributions/192.165.166.4|192.165.166.4]] ([[User talk:192.165.166.4|talk]]) to last version by Adrian Buehlmann
666732
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|Protected area]]
</noinclude>
4s6q8qmqn809qs8ilect980y8onh8h4
666734
666732
2006-03-02T22:05:11Z
212.184.88.186
666734
wikitext
text/x-wiki
[[Image:Prince Albert Piercing.jpg]]
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|Protected area]]
</noinclude>
kq59yo560778sh6hu3oq16qi10q1moz
666735
666734
2006-03-02T22:06:23Z
Curps
38287
Reverted edits by [[Special:Contributions/212.184.88.186|212.184.88.186]] ([[User talk:212.184.88.186|talk]]) to last version by Curps
666735
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|Protected area]]
</noinclude>
4s6q8qmqn809qs8ilect980y8onh8h4
666736
666735
2006-03-02T22:09:29Z
192.87.106.162
666736
wikitext
text/x-wiki
[[Image:Prince Albert Piercing.jpg]]
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|Protected area]]
</noinclude>
kq59yo560778sh6hu3oq16qi10q1moz
666737
666736
2006-03-02T22:09:48Z
Curps
38287
Reverted edits by [[Special:Contributions/192.87.106.162|192.87.106.162]] ([[User talk:192.87.106.162|talk]]) to last version by Curps
666737
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|Protected area]]
</noinclude>
4s6q8qmqn809qs8ilect980y8onh8h4
666739
666737
2006-03-26T18:38:19Z
Eoghanacht
627
+cat
666739
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
</noinclude>
nvi91lytfnunfj2akpnsilh5w9jnzll
666740
666739
2006-04-05T22:13:41Z
Docu
14583
+coor title dms
666740
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|type:landmark}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}{{qif|test={{{lat_degrees|}}}|then={{Coor title dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|type:landmark}} }}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:Infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
</noinclude>
ezokx6vg4p4jtepyle4my0spxfq5bq1
666741
666740
2006-04-06T04:01:44Z
MONGO
62717
I don't like this cahnge...we already have the coordinates in the infobox...it looks lousy on every article twice
666741
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
</noinclude>
nvi91lytfnunfj2akpnsilh5w9jnzll
666742
666741
2006-04-06T06:37:05Z
Docu
14583
+cat
666742
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:Infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
</noinclude>
pxiy8a0hf5e9x9lkmvvc2zu1507mdtm
666743
666742
2006-04-09T15:33:32Z
Croquant
44289
+ fr:
666743
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:Infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
sg41e9ayo5xkj116daejttjapd0xxil
666744
666743
2006-05-19T18:24:51Z
Qyd
38093
666744
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;"
|<div style="border: 1px solid #CCC;">
{{Superimpose| base = {{{image|}}}
| base_width = 180px
| base_caption = {{{caption|}}}
| float = Dot-yellow.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}
</div>
<center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:Infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
fxv1pi5szldew1lr0sep81naeqjfk9y
666745
666744
2006-05-19T19:20:41Z
Qyd
38093
rv own edit (made by mistake)
666745
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:Infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
sg41e9ayo5xkj116daejttjapd0xxil
666746
666745
2006-06-18T18:32:13Z
Circeus
485
recat
666746
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
9cauhqm4m6heo0gwzfx8gpyxlo4z04p
666749
666746
2006-07-29T01:38:42Z
Dr who1975
63467
666749
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|
{{#if:{{{cor_type|}}}|type:{{{cor_type}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
gj8ep7oit4dj4lrf1xau5go2l3slper
666750
666749
2006-07-29T01:40:14Z
Dr who1975
63467
666750
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|
{{#if:{{{cor_type|}}}type:{{{cor_type}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
djk20cxpimwqwqqay143sfykxeau02r
666751
666750
2006-07-29T01:41:25Z
Dr who1975
63467
666751
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{#if:{{{cor_type|}}}type:{{{cor_type}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
reiaqhpd3lnlxz3bclnw21kjmp12sxd
666752
666751
2006-07-29T01:42:41Z
Dr who1975
63467
666752
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{#if:{{{cor_type|}}}|type:{{{cor_type}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
c4ht3upos8vnn6gqzmmublvl19hnr4z
666753
666752
2006-07-29T01:43:13Z
Dr who1975
63467
666753
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{#if:{{{cor_type|}}}|type:{{{cor_type|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
7w9ykrs3oapawwhe0efko4p3i5bs4qi
666754
666753
2006-07-29T01:43:35Z
Dr who1975
63467
666754
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{#if:{{{cor_type|}}}type:{{{cor_type|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
sqdk2lrk5z6z8htmnbhva3bmkbrawbu
666756
666754
2006-07-29T01:45:01Z
Dr who1975
63467
666756
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{#if:{{{cor_type|}}}|type:{{{cor_type|}}}|}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
7rm68gqq3inbrezf5pmzm9o3katoln8
666758
666756
2006-07-29T01:45:31Z
Dr who1975
63467
666758
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{#if:{{{cor_type|}}}type:{{{cor_type|}}}|}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
ttmzjbpe2ueehmtq1xyf4kecrzk51md
666760
666758
2006-07-29T01:46:13Z
Dr who1975
63467
666760
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{{#if:{{{cor_type|}}}type:{{{cor_type|}}}|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
iip0fu1x16at3ceep1dhyxn9k3oob1y
666762
666760
2006-07-29T01:47:24Z
Dr who1975
63467
666762
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{{#if:{{{cor_type|}}}|type:{{{cor_type|}}}|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
febkfj6jfbjzxgh1apkfubz3lgd3plo
666764
666762
2006-07-29T01:48:34Z
Dr who1975
63467
666764
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{{#if:{{{{cor_type|}}}}|type:{{{{cor_type|}}}}|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
982r03v32ib07qzm5clk0rbxuhzepso
666765
666764
2006-07-29T01:52:37Z
Dr who1975
63467
The Google Map Settings for Monuments look ridiculous without a type. With a type... you can see a close up of the monument... see Lincoln Memorial.
666765
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 8px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{{#if:{{{{coor_type|}}}}|type:{{{{coor_type|}}}}|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
3i1u0akk1vmp3j2qjsuwmc6fdwrknep
666766
666765
2006-09-02T09:32:37Z
F
47159
666766
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 12px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{{#if:{{{{coor_type|}}}}|type:{{{{coor_type|}}}}|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
dxfz32xot5w1e8usqlpkivwmcdnxa91
666768
666766
2006-09-02T09:32:59Z
F
47159
666768
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.gif
| float_width = 9px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{{#if:{{{{coor_type|}}}}|type:{{{{coor_type|}}}}|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
9t5klliifrcrgb97586pov9ddcs30d3
666770
666768
2006-09-06T09:45:42Z
MONGO
62717
try this
666770
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- class="hiddenStructure{{{iucn_category|}}}" style="text-align: center;"
| colspan="2" {{Infobox protected area/IUCN {{{iucn_category|}}}}}
|- class{{{image|}}}="hiddenStructure"
| colspan="2" style="line-height: 1.2;" | <div style="border: 1px solid #CCC;">{{Superimpose| base = {{{image|}}}
| base_width = 288px
| base_caption = {{{caption|}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name|}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center>
|- class{{{location|}}}="hiddenStructure" style="vertical-align: top;"
| '''Location:'''
| {{{location|}}}
|- class{{{nearest_city|}}}="hiddenStructure" style="vertical-align: top;"
| '''Nearest city:'''
| {{{nearest_city|}}}
|- class{{{lat_degrees|}}}="hiddenStructure" style="vertical-align: top;"
| '''Coordinates:'''
| {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|{{{#if:{{{{coor_type|}}}}|type:{{{{coor_type|}}}}|}}}|}}
|- class{{{area|}}}="hiddenStructure" style="vertical-align: top;"
| '''Area:'''
| {{{area|}}}
|- class{{{established|}}}="hiddenStructure" style="vertical-align: top;"
| '''Established:'''
| {{{established|}}}
|- class{{{visitation_num|}}}="hiddenStructure" style="vertical-align: top"
| '''Visitation:'''
| {{{visitation_num|}}} (in {{{visitation_year|}}})
|- class{{{governing_body|}}}="hiddenStructure" style="vertical-align: top;"
| style="white-space: nowrap;" | '''Governing body:'''
| {{{governing_body|}}}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it.
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
g56gcl9osc39r3azyyfj1ixqbkaapu6
666773
666770
2006-10-09T21:43:27Z
Ligulem
14475
obliterate bad [[Wikipedia:hiddenStructure|hiddenStructure]] CSS hack
666773
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
ar98i65pf0oivg0s2j6s39n95r80okh
666775
666773
2006-10-09T21:53:55Z
Ligulem
14475
Protected Template:Infobox protected area: semi-protected, high visibility [edit=autoconfirmed:move=autoconfirmed]
666773
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
ar98i65pf0oivg0s2j6s39n95r80okh
666777
666775
2006-10-15T05:59:55Z
David Kernow
14542
moved [[Template:Infobox protected area]] to [[Template:Infobox Protected area]]: To follow casing used by (most) other infoboxes.
666773
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
ar98i65pf0oivg0s2j6s39n95r80okh
666780
666777
2006-10-25T06:27:29Z
Dschwen
63470
change coor_dms to coor_at_dms, this puts the coord at the top, too. Useful for [[User:Dschwen/WikiMiniAtlas]]
666780
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor at dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
gjdcj3iz567e212dmrrfv8jg6vsuw19
666781
666780
2006-10-25T06:38:21Z
MONGO
62717
please don't do this...the coordinates are already in the infoboxes and this transcludes to many hundreds of pages of the Protected areas project
666781
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
ar98i65pf0oivg0s2j6s39n95r80okh
666782
666781
2006-12-12T06:07:23Z
Scorpion0422
59064
Removed visitiation year. Many parks don't have the year option which makes them look sloppy.
666782
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
e7hve0oy4xft9weuxzvjb7qu6gks7xq
666783
666782
2006-12-12T06:41:18Z
Scorpion0422
59064
reverted own edit. Perhaps it should be made an optional box, because many templates I've seen have (in {{{visitation_year}}}), which doesn't look very encyclopedic
666783
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Boite aire protégée]]
</noinclude>
ar98i65pf0oivg0s2j6s39n95r80okh
666784
666783
2006-12-22T17:51:27Z
Croquant
44289
fr:
666784
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = 288px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
9jg62hi7hpnj7y7kpkp8z8y2snkyq26
666785
666784
2006-12-22T19:14:50Z
Croquant
44289
variable base width
666785
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
0nsbdefa8kp8hlpt2ls8y1yrrjn7qz2
666786
666785
2006-12-22T19:21:24Z
Croquant
44289
center image
666786
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
ayzzvammd9xu4o1fav27ydajlczjpwt
666787
666786
2007-01-13T23:36:25Z
Tariqabjotu
26944
Protected Template:Infobox Protected area: on upcoming today's featured article [edit=sysop:move=sysop]
666786
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
ayzzvammd9xu4o1fav27ydajlczjpwt
666788
666787
2007-01-13T23:36:52Z
Tariqabjotu
26944
+ {{mprotected2}}
666788
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
{{mprotected2|Shoshone National Forest}}
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
l0u503b5nojdk6gbay58oyrj14wgdqq
666789
666788
2007-01-13T23:37:34Z
Tariqabjotu
26944
+ {{-}} (to clear space)
666789
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
{{-}}
{{mprotected2|Shoshone National Forest}}
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
m5y5ngtk4n07mhwbinpnqud56251l8i
666790
666789
2007-01-31T06:30:02Z
Zzyzx11
37894
Unprotected Template:Infobox Protected area: [[Shoshone National Forest]] is no longer linked from the main page
666789
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
{{-}}
{{mprotected2|Shoshone National Forest}}
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
m5y5ngtk4n07mhwbinpnqud56251l8i
666791
666790
2007-01-31T06:30:41Z
Zzyzx11
37894
Revert to revision 95967635 dated 2006-12-22 19:21:24 by Croquant using [[:en:Wikipedia:Tools/Navigation_popups|popups]]
666791
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:Coordinates templates|{{PAGENAME}}]]
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
ayzzvammd9xu4o1fav27ydajlczjpwt
666792
666791
2007-02-18T18:08:41Z
Mike Peel
8110
Remove from [[Category:Coordinates templates]] - not a coordinate template
666792
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
q7b8o3df7l05zo0ezjnhcu5owv754ko
666795
666792
2007-02-27T10:47:41Z
Nichalp
37871
adding css parameter = center to the title
666795
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%; text-align:center;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
nd4fdvxe50mytflkp11olgrea1emwf4
666797
666795
2007-02-27T23:33:59Z
VerruckteDan
52824
[[WP:AES|←]]Undid revision 111303683 by [[Special:Contributions/Nichalp|Nichalp]] ([[User talk:Nichalp|talk]]) - title was already centered, this edit made all text centered
666797
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
q7b8o3df7l05zo0ezjnhcu5owv754ko
666800
666797
2007-02-28T07:42:23Z
Nichalp
37871
oops sorry; the center align is not showing up in IE. Adding the text=center for the {{{name}}} row only this time
666800
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
it3g95mbtwrpf4bb1ecm7lir5lfs8j0
666803
666800
2007-03-13T02:34:07Z
VitaleBaby
63472
666803
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
qqsok83vadmsk2iwy4vgi3jgiv1ehib
666804
666803
2007-03-13T02:34:26Z
VitaleBaby
63472
666804
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Yearly Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
radkrido633r0dcy343k7vduaexqdih
666805
666804
2007-03-13T02:36:16Z
VitaleBaby
63472
666805
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
qqsok83vadmsk2iwy4vgi3jgiv1ehib
666806
666805
2007-04-03T17:21:44Z
Ganeshk
38000
reduce picture and infobox size
666806
wikitext
text/x-wiki
{| class="infobox" style="width: 250px; font-size: 85%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|240}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
apnudt2v2nwlzyt89hypf1g4m79uo0h
666807
666806
2007-04-03T17:23:10Z
Ganeshk
38000
rv myself
666807
wikitext
text/x-wiki
{| class="infobox" style="width: 300px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
qqsok83vadmsk2iwy4vgi3jgiv1ehib
666808
666807
2007-04-05T19:45:45Z
Saravask
47249
allow user-defined template width
666808
wikitext
text/x-wiki
{| class="infobox" style="width: {{{width|300}}}px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Locator_Dot.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
7b9r1tcnn8pk4o2ywv5x6vdka0bzubl
666809
666808
2007-04-06T02:55:41Z
Ganeshk
38000
Locator dot is invisible, changing locator dot to Red_pog.svg
666809
wikitext
text/x-wiki
{| class="infobox" style="width: {{{width|300}}}px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
oe48c4mwkrxqk6xfk09rtc83f663n0z
666810
666809
2007-04-23T01:54:50Z
99.244.247.108
666810
wikitext
text/x-wiki
{| class="infobox" style="width: {{{width|250}}}px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
4p1uq0w5v7xr5if8z1dicuvjnclpfcm
666811
666810
2007-04-23T01:55:26Z
99.244.247.108
px
666811
wikitext
text/x-wiki
{| class="infobox" style="width: {{{width|250}}}px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|250}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
an7p52qdcdipqeb6x56fprm6b9nkh98
666812
666811
2007-04-23T01:59:00Z
Bolonium
54583
666812
wikitext
text/x-wiki
{| class="infobox" style="width: {{{width|250}}}px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|240}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
nsonguwurhn0t0n1m5z71g6tyqtfm5x
666814
666812
2007-04-23T01:59:46Z
Bolonium
54583
rv myself
666814
wikitext
text/x-wiki
{| class="infobox" style="width: {{{width|250}}}px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|250}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
an7p52qdcdipqeb6x56fprm6b9nkh98
666817
666814
2007-04-23T02:13:27Z
VerruckteDan
52824
revert changes, it breaks the locator dot function
666817
wikitext
text/x-wiki
{| class="infobox" style="width: {{{width|300}}}px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" | {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} {{{location}}} }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coor dms|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]]. Please see the template's [[Template talk:Infobox protected area|discussion]] page for examples and a guide to using it. (See also the [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates])
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
oe48c4mwkrxqk6xfk09rtc83f663n0z
666819
666817
2007-05-12T12:14:33Z
Pigsonthewing
6277
add hCard microformat per WP:UF; move documentation to /doc
666819
wikitext
text/x-wiki
{| class="infobox vcard" style="width: {{{width|300}}}px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" class="fn org"| {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} <span class="label">{{{location}}}</span> }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|display=inline,title|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;" class="note"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
{{template doc}}
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
ghy4cahqogpoucxfo7jyfewtdfmllof
666821
666819
2007-05-14T22:28:10Z
Pigsonthewing
6277
rm "title" display - some articles have conflicting coordinates templates with their own title display
666821
wikitext
text/x-wiki
{| class="infobox vcard" style="width: {{{width|300}}}px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" class="fn org"| {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} <span class="label">{{{location}}}</span> }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|display=inline|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;" class="note"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total Visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
{{template doc}}
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
2vyl401xy1e291xhaos0gmsptn456h0
666823
666821
2007-05-19T10:31:31Z
Editore99
63475
copyedit
666823
wikitext
text/x-wiki
{| class="infobox vcard" style="width: {{{width|300}}}px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" class="fn org"| {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} <span class="label">{{{location}}}</span> }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|display=inline|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;" class="note"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
{{template doc}}
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
[[fr:Modèle:Infobox aire protégée]]
</noinclude>
9ks0w3p6948qgrwn1p2hcvg5cnhm7g3
666825
666823
2007-05-21T23:34:00Z
Zyxw
14644
update formatting of transcluded documentation, add white space, fix display of infobox on this page
666825
wikitext
text/x-wiki
{| class="infobox vcard" style="width: {{{width|300}}}px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" class="fn org" | {{{name}}}
|-
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
<td colspan="2"><center>{{Infobox protected area/IUCN {{{iucn_category}}} }}</center></td> }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption<includeonly>|</includeonly>}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} <span class="label">{{{location}}}</span> }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
<td>'''Coordinates:'''</td>
<td>{{Coord
| {{{lat_degrees|}}} | {{{lat_minutes|}}} | {{{lat_seconds|}}} | {{{lat_direction|}}}
| {{{long_degrees|}}} | {{{long_minutes|}}} | {{{long_seconds|}}} | {{{long_direction|}}}
| display=inline
}}</td>}}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;" class="note"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
{{clear}}{{/doc}}
<!-- Add categories and interwikis to the /doc subpage, not here. -->
</noinclude>
hovfsykq71f4azi1d1fph7ezhplu8f8
666827
666825
2007-05-21T23:35:54Z
Zyxw
14644
revert some changes that did not work
666827
wikitext
text/x-wiki
{| class="infobox vcard" style="width: {{{width|300}}}px; font-size: 90%;"
! colspan="2" style="font-size: larger;text-align:center" class="fn org"| {{{name}}}
|- style="text-align: center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |
{{!}} colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }} }}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |
{{!}} colspan="2" style="line-height: 1.2;" {{!}} <div align="center" style="border: 1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |
{{!}} '''Location:'''
{{!}} <span class="label">{{{location}}}</span> }}
|- style="vertical-align: top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |
{{!}} '''Nearest city:'''
{{!}} {{{nearest_city}}} }}
|- style="vertical-align: top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |
{{!}} '''Coordinates:'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}|display=inline|}} }}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |
{{!}} '''Area:'''
{{!}} {{{area}}} }}
|- style="vertical-align:top;" class="note"
{{#if: {{{established<includeonly>|</includeonly>}}} |
{{!}} '''Established:'''
{{!}} {{{established}}} }}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |
{{!}} '''Total visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}}) }}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |
{{!}} style="white-space:nowrap;" {{!}} '''Governing body:'''
{{!}} {{{governing_body}}} }}
|}<noinclude>
{{clear}}{{/doc}}
<!-- Add categories and interwikis to the /doc subpage, not here. -->
</noinclude>
1v5qx9ayaasp4ipllc2e720rqbl3o9r
666829
666827
2007-05-23T05:05:54Z
David Kernow
14542
Suggest colons unnecessary...?
666829
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if: {{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if: {{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if: {{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if: {{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if: {{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if: {{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if: {{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if: {{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Total visitation:'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if: {{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} style="white-space:nowrap;" {{!}} '''Governing body'''
{{!}} {{{governing_body}}}
}}
|}<noinclude>
{{clear}}{{/doc}}
<!-- Add categories and interwikis to the /doc subpage, not here. -->
</noinclude>
sypiigcfzap48i4ctkqpp19irqg0q3o
666831
666829
2007-05-23T05:07:33Z
David Kernow
14542
missed one
666831
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #CCC;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Total visitation'''
{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}} {{{governing_body}}}
}}
|}<noinclude>
{{clear}}{{/doc}}
<!--Please add metadata (e.g. interwiki links) to the /doc subpage, not here - thanks!-->
</noinclude>
qxf8r9qv8xpnc9ybj9gxb0ofu9yg0y1
666833
666831
2007-05-23T05:09:13Z
David Kernow
14542
line-height (in case of linewrap)
666833
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Total visitation'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|}<noinclude>
{{clear}}{{/doc}}
<!--Please add metadata (e.g. interwiki links) to the /doc subpage, not here - thanks!-->
</noinclude>
q8ai1c6pn83kan38qv7n3ip9zucwrr8
666835
666833
2007-05-23T05:10:35Z
David Kernow
14542
ditto
666835
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Total visitation'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|}<noinclude>
{{clear}}{{/doc}}
<!--Please add metadata (e.g. interwiki links) to the /doc subpage, not here - thanks!-->
</noinclude>
n9nfkxgd6b07p39tflco3kjeo0w3icn
666837
666835
2007-05-23T05:11:09Z
David Kernow
14542
linewrap management (Total visitation)
666837
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = {{{caption<includeonly>|</includeonly>}}}
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Total visitation'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|}<noinclude>
{{clear}}{{/doc}}
<!--Please add metadata (e.g. interwiki links) to the /doc subpage, not here - thanks!-->
</noinclude>
ct63lxl06lgyyb13u8mzr5q5fd8hwss
666839
666837
2007-05-23T05:14:23Z
David Kernow
14542
trying <small> {{{caption}}}
666839
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;">{{
Superimpose
| base = {{{image}}}
| base_width = {{{base_width|288}}}px
| base_caption = <small>{{{caption<includeonly>|</includeonly>}}}</small>
| float = Red_pog.svg
| float_width = 9px
| float_caption = {{{name}}}
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}</div> <center>{{{caption|}}}</center> }}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Total visitation'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|}<noinclude>
{{clear}}{{/doc}}
<!--Please add metadata (e.g. interwiki links) to the /doc subpage, not here - thanks!-->
</noinclude>
mtge3q4g72b44h7ki4kx3euj7eoyd6d
666840
666839
2007-05-23T05:16:14Z
David Kernow
14542
...take 2, +<includeonly>
666840
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Total visitation'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|}<noinclude>
{{clear}}{{/doc}}
<!--Please add metadata (e.g. interwiki links) to the /doc subpage, not here - thanks!-->
</noinclude>
38o9ah5niw1e8nu89i26nkc9yn6xvte
666841
666840
2007-05-24T04:05:39Z
MONGO
62717
add [[World Heritage Site]] parameter
666841
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Total visitation'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
{{clear}}{{/doc}}
<!--Please add metadata (e.g. interwiki links) to the /doc subpage, not here - thanks!-->
</noinclude>
0sjt5c46gcbhgxwaf5wnx4tq9v09w43
666842
666841
2007-08-19T20:09:50Z
Qyd
38093
location->adress-region rather than label (for hcard parsing)
666842
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Total visitation'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
{{clear}}{{/doc}}
<!--Please add metadata (e.g. interwiki links) to the /doc subpage, not here - thanks!-->
</noinclude>
qc19p4w97kcn376mir56prtyztlqrih
666843
666842
2007-10-10T18:18:34Z
Qyd
38093
{{Template doc}}
666843
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Total visitation'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Template doc}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
phzgir6sys1pu8ki55k127xaz6juc0a
666847
666843
2007-11-09T00:43:01Z
PRRfan
63477
total visitation -> visitors
666847
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Template doc}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
fewedmwi2gvhgm2pc5sdd6hrv8u6rso
666850
666847
2007-11-18T06:01:07Z
Maelgwnbot
31241
Bot Updating template fields, {{tl|Template doc}}
666850
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
7evthoicaep198xx1i6tth34vcfhcuf
666852
666850
2008-01-05T08:58:30Z
Berland
55421
in coord: display=inline -> display=inline,title
666852
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline,title|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
gxd0bsx0sxp2zbvgcih0yt2br6so1w0
666853
666852
2008-02-05T17:28:05Z
Qyd
38093
auto coord: display inline only (otherwise it collides with other existing title coord such as geolink, coord title, etc)
666853
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
7evthoicaep198xx1i6tth34vcfhcuf
666859
666853
2008-03-07T18:28:01Z
Heptazane
63479
Added name in coord.
666859
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|name={{{name}}}}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
njttotwcomc7edt2lfyfdgsdtb0ml4q
666861
666859
2008-03-07T18:49:54Z
MONGO
62717
this template is used in hundreds of articles, and I have no idea what this recnet change did so reverting, please discuss all changes on template talkpage
666861
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
7evthoicaep198xx1i6tth34vcfhcuf
666863
666861
2008-03-11T03:16:16Z
Heptazane
63479
Added name back in. See "Need the name parameter in coord" in talk.
666863
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|name={{{name}}}}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
njttotwcomc7edt2lfyfdgsdtb0ml4q
666864
666863
2008-03-13T23:55:55Z
Qyd
38093
no need for that, it's assigned automatically, calls an illegal function
666864
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
7evthoicaep198xx1i6tth34vcfhcuf
666865
666864
2008-05-03T20:14:05Z
Chrishmt0423
46996
tweak world_heritage_site parameter - test
666865
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="line-height:11pt;" {{!}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
j2acerrucd3euuiwdnjsg0z8ruqm1he
666866
666865
2008-05-03T20:16:01Z
Chrishmt0423
46996
tweak world_heritage_site parameter - test
666866
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="line-height:11pt;" {{!}} {{}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
gl4gmyasb3chm5ex4a3dutjl6ak70li
666868
666866
2008-05-03T20:16:45Z
Chrishmt0423
46996
Reverted edits by [[Special:Contributions/Chrishomingtang|Chrishomingtang]] ([[User talk:Chrishomingtang|talk]]) to last version by Qyd
666868
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
7evthoicaep198xx1i6tth34vcfhcuf
666870
666868
2008-05-03T20:21:53Z
Chrishmt0423
46996
test
666870
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{{Infobox World Heritage Site 2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
niecndyskh2nusmbf0xvl9ga4z0gjw7
666872
666870
2008-05-03T20:23:58Z
Chrishmt0423
46996
test
666872
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="text-align:center;"
{{#if:{{{world_heritage_site 2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} {{{Infobox World Heritage Site 2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
1m0khsa852p6lrn3q8cwbaua4rqhmjv
666874
666872
2008-05-03T20:25:26Z
Chrishmt0423
46996
test complete
666874
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="text-align:center;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} {{Infobox World Heritage Site 2}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
2yaul1xhg7c55vtwdqu86s2wzwvvyle
666875
666874
2008-05-03T20:27:01Z
Chrishmt0423
46996
fix - incorporate whs template
666875
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="text-align:center;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox World Heritage Site 2}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
scfiptwu6ohgr0e60j0s85t5gfx5fyz
666876
666875
2008-05-03T20:29:10Z
Chrishmt0423
46996
test
666876
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="text-align:center;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox World Heritage Site 2 {{{world_heritage_site_2}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
62nzbghcyp5okx2xn9h2mez1bxahqt6
666878
666876
2008-05-03T20:32:46Z
Chrishmt0423
46996
test
666878
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="text-align:center;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{ {{{world_heritage_site_2}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
1wod4vsb1ueil8xn2n9l7sr6tzt3m1x
666880
666878
2008-05-03T20:34:03Z
Chrishmt0423
46996
test
666880
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="text-align:center;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} {{ {{{world_heritage_site_2}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
msm8oe0bdn9o2px0vmuqaw4csys917z
666882
666880
2008-05-03T20:38:33Z
Chrishmt0423
46996
test
666882
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="text-align:center;" colspan="2;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} {{ {{{world_heritage_site_2}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
afy5k6p06d19xgu2x5cn0ov1722ezeg
666884
666882
2008-05-03T20:40:03Z
Chrishmt0423
46996
test
666884
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} {{ {{{world_heritage_site_2}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
ehda4a96622xlwcs41s3xz7bkilhula
666886
666884
2008-05-03T20:41:17Z
Chrishmt0423
46996
test
666886
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="line-height:11pt;" {{!}} {{ {{{world_heritage_site_2}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
38n5uffvz364tbeymt3v9mgwbmfq63l
666888
666886
2008-05-03T20:43:06Z
Chrishmt0423
46996
test
666888
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
{{!}} colspan=2 {{!}}
<table width=100%>
<tr><td colspan=2 bgcolor="#eeeeee" align=center>
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} {{ {{{world_heritage_site_2}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
mltuv8twgs22vimeximpv7jxvw58o8d
666889
666888
2008-05-03T20:43:27Z
Chrishmt0423
46996
[[WP:UNDO|Undid]] revision 209970630 by [[Special:Contributions/Chrishomingtang|Chrishomingtang]] ([[User talk:Chrishomingtang|talk]])
666889
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="line-height:11pt;" {{!}} {{ {{{world_heritage_site_2}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
38n5uffvz364tbeymt3v9mgwbmfq63l
666891
666889
2008-05-03T20:44:56Z
Chrishmt0423
46996
test
666891
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} colspan="2;" align="center;" {{!}} {{ {{{world_heritage_site_2}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
68pces8kh6m7e7j87mt6tng30bn2v09
666892
666891
2008-05-03T20:46:22Z
Chrishmt0423
46996
test
666892
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|}
{|
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} colspan="2;" align="center;" {{!}} {{ {{{world_heritage_site_2}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
qg9iyvl1t4rjqppg8506k03s2whqdpp
666893
666892
2008-05-03T20:46:49Z
Chrishmt0423
46996
[[WP:UNDO|Undid]] revision 209971222 by [[Special:Contributions/Chrishomingtang|Chrishomingtang]] ([[User talk:Chrishomingtang|talk]])
666893
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} colspan="2;" align="center;" {{!}} {{ {{{world_heritage_site_2}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
68pces8kh6m7e7j87mt6tng30bn2v09
666896
666893
2008-05-03T20:58:14Z
Chrishmt0423
46996
test
666896
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- valign="top"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} style="line-height:11pt;"{{!}} {{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
l0ok5n8d24gkp89g1l92lytrd5nqkxv
666898
666896
2008-05-03T21:00:32Z
Chrishmt0423
46996
test
666898
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- valign="top"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} style="line-height:11pt;"{{!}} {{ {{{world_heritage_site_2}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
b0ibqs3s06m42ixy0oguydiwav82xo6
666900
666898
2008-05-03T21:01:28Z
Chrishmt0423
46996
test
666900
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- valign="top"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} {{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
3ijcdryv550xwz2v2iws3t1bea6ehth
666901
666900
2008-05-03T21:05:17Z
Chrishmt0423
46996
test
666901
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- valign="top"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
mc498qh2kd27lgh0lks85kx38b6vkwh
666902
666901
2008-05-03T21:07:16Z
Chrishmt0423
46996
test
666902
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- valign="top"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2"{{!}} {{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
r7ho8wdf6lo2ejfr3fok4yffh6bxxcy
666903
666902
2008-05-03T21:08:36Z
Chrishmt0423
46996
test
666903
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:center;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
6es34zmjhvl0utv5il80a01jk7cyv4z
666904
666903
2008-05-03T21:09:29Z
Chrishmt0423
46996
test
666904
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="text-align:center;"
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
3p2t5lyv5labvytj3apwu32mn2gdfb2
666905
666904
2008-05-03T21:11:26Z
Chrishmt0423
46996
test
666905
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"|
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
sb28vgqtcxm8xweadkzvuuhlhxcqq5k
666906
666905
2008-05-03T21:11:59Z
Chrishmt0423
46996
test
666906
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- colspan="2" style="text-align:center;"|
{{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
01m6ru5yv1hz2ezp3em8ixmalt6xu9r
666907
666906
2008-05-03T21:13:18Z
Chrishmt0423
46996
test
666907
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
2azqr8xl0c0b93g45hmahgz5lii22py
666908
666907
2008-05-03T21:13:43Z
Chrishmt0423
46996
test
666908
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
7ft7rhiep35b0lp9eox6efj4q8kbm4x
666909
666908
2008-05-03T21:14:37Z
Chrishmt0423
46996
test
666909
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!style="text-align:center;"| {{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
q75bea4lj9dglvhyy9kgwnu2hhb2pbl
666910
666909
2008-05-03T21:15:27Z
Chrishmt0423
46996
test complete
666910
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!style="text-align:center;"| {{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} {{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
8mfijbzltqtcqslf2bku8g4wcjt10k8
666911
666910
2008-05-03T21:16:30Z
Chrishmt0423
46996
mfix
666911
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!style="text-align:center;"| {{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
ed6bg1y1axlbm03186bcxztp80a16rf
666912
666911
2008-05-03T21:17:42Z
Chrishmt0423
46996
fix
666912
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site_2<includeonly>|</includeonly>}}} |<!--then:-->
{{{world_heritage_site_2}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
6k7tvjl0k4vqnx4gq5f2w55or4g27py
666914
666912
2008-05-03T21:27:32Z
Chrishmt0423
46996
fix name
666914
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{{Infobox Protected area/World Heritage Site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
kczr3hjy7hkmqnzfwrqgdschrt3j4ps
666916
666914
2008-05-03T21:53:21Z
Chrishmt0423
46996
fix
666916
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{Infobox Protected area/World Heritage Site}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
hjh4knjmfjxwgt7wgjouko5kvf9qxqn
666918
666916
2008-05-03T21:56:21Z
Chrishmt0423
46996
fix
666918
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
g5zr4xt7zjm9giwjoypfx21epnmn2jp
666920
666918
2008-05-03T21:58:39Z
Chrishmt0423
46996
fix
666920
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{ {{{world_heritage_site}}} }}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
e3rigvuj50mf8d1zvnonxcajngvmmbi
666923
666920
2008-05-03T21:59:35Z
Chrishmt0423
46996
[[WP:UNDO|Undid]] revision 209984033 by [[Special:Contributions/Chrishomingtang|Chrishomingtang]] ([[User talk:Chrishomingtang|talk]])
666923
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
g5zr4xt7zjm9giwjoypfx21epnmn2jp
666925
666923
2008-05-09T21:31:36Z
Kotniski
31249
enabling a native name and English name to be given
666925
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
0yyl88wompd00ghbcc8hguubdwa0tbh
666933
666925
2008-06-11T05:16:26Z
CCMichalZ
63485
template fix
666933
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288px}}}
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
ix97n7fa7myw98z4x1wpjjwqrvey04h
666935
666933
2008-06-11T05:19:40Z
CCMichalZ
63485
666935
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
c323bynbss3316ypdbro287qaowdixy
666938
666935
2008-06-11T05:23:13Z
CCMichalZ
63485
[[WP:UNDO|Undid]] revision 218561931 by [[Special:Contributions/CCMichalZ|CCMichalZ]] ([[User talk:CCMichalZ|talk]])
666938
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288px}}}
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
ix97n7fa7myw98z4x1wpjjwqrvey04h
666940
666938
2008-06-11T05:23:42Z
CCMichalZ
63485
[[WP:UNDO|Undid]] revision 218561485 by [[Special:Contributions/CCMichalZ|CCMichalZ]] ([[User talk:CCMichalZ|talk]])
666940
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
!colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
0yyl88wompd00ghbcc8hguubdwa0tbh
666942
666940
2008-07-09T06:03:37Z
MONGO
62717
seeing if this works now
666942
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{World Heritage Site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{World_Heritage_Site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
f716bar7nfk909gksg9f5q6uac2wf25
666943
666942
2008-07-09T06:06:02Z
MONGO
62717
restore older version of World Heritage Site parameter
666943
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
j7dc1jkqjtr6v48pjnpbb7j9sttkk09
666944
666943
2008-07-10T04:35:58Z
Chrishmt0423
46996
fix
666944
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|-
|colspan="2" style="text-align:center;"| {{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
gybn9vjbkfyycats6kru3p5xgjif8ub
666946
666944
2008-07-12T05:34:11Z
MONGO
62717
restore...please do not adjust this template..it impacts thousands of articles...see talkpage
666946
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
j7dc1jkqjtr6v48pjnpbb7j9sttkk09
666952
666946
2008-07-25T12:47:04Z
Firien
63488
testing fix
666952
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}
<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
e9jc3a9q49kilf5pdjnx9lpty4p381g
666954
666952
2008-07-25T12:50:53Z
Firien
63488
fault was elsewhere, rv own change
666954
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
j7dc1jkqjtr6v48pjnpbb7j9sttkk09
666956
666954
2008-07-25T21:51:19Z
EncMstr
568
accept coords= parameter to override the lat_h, lat_m, lat_s, etc.: allows full use of {{coord}}
666956
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{coords|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{{coords}}} |<!--else-->
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->}}
}} <!--end lat_degrees -->
}} <!--end coord -->
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
t70v0regi9rphsgrcdflhbuobyefm19
666957
666956
2008-09-04T19:44:33Z
Pigsonthewing
6277
[[WP:UNDO|Undid]] revision 227905600 by [[Special:Contributions/EncMstr|EncMstr]] ([[User talk:EncMstr|talk]]) broke display
666957
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
j7dc1jkqjtr6v48pjnpbb7j9sttkk09
666959
666957
2008-09-04T19:47:43Z
Pigsonthewing
6277
rv slef - not the problem?
666959
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{coords|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{{coords}}} |<!--else-->
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->}}
}} <!--end lat_degrees -->
}} <!--end coord -->
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
t70v0regi9rphsgrcdflhbuobyefm19
666961
666959
2008-09-16T20:47:18Z
Pigsonthewing
6277
fix hCard microformat mark-up - see WP:UF
666961
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{coords|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{{coords}}} |<!--else-->
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->}}
}} <!--end lat_degrees -->
}} <!--end coord -->
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
ao8pysh2ujesobv81qiugqv1zf47t3v
666963
666961
2008-09-22T01:53:55Z
MONGO
62717
restore to older version
666963
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;" class="adr"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="region">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->|display=inline|}}
}}
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
j7dc1jkqjtr6v48pjnpbb7j9sttkk09
666965
666963
2008-09-22T13:27:58Z
Pigsonthewing
6277
[[WP:UNDO|Undid]] revision 240137061 by [[Special:Contributions/MONGO|MONGO]] ([[User talk:MONGO|talk]]) made no difference
666965
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{coords|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{{coords}}} |<!--else-->
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->}}
}} <!--end lat_degrees -->
}} <!--end coord -->
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
ao8pysh2ujesobv81qiugqv1zf47t3v
666974
666965
2008-10-04T02:31:26Z
Danorton
63491
add Website section
666974
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{coords|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{{coords}}} |<!--else-->
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|}}}|{{{lat_seconds|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|}}}|{{{long_seconds|}}}|{{{long_direction|}}}<!--
-->}}
}} <!--end lat_degrees -->
}} <!--end coord -->
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|- style="vertical-align:top;"
{{#if:{{{website<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Website'''
{{!}}style="line-height:11pt;" {{!}} {{{website}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
rarnxn01l2yagt7g0v44dvgk10rah3k
666975
666974
2008-12-23T10:35:47Z
Ozhiker
62270
Add defaults for coordinate minutes and seconds - blank parameters for these were were causing errors
666975
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{coords|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{{coords}}} |<!--else-->
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|0}}}|{{{lat_seconds|0}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|0}}}|{{{long_seconds|0}}}|{{{long_direction|}}}<!--
-->}}
}} <!--end lat_degrees -->
}} <!--end coord -->
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|- style="vertical-align:top;"
{{#if:{{{website<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Website'''
{{!}}style="line-height:11pt;" {{!}} {{{website}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
hl4wtuuxa7h8g8wxsiix6dkvdrduzxx
666976
666975
2008-12-27T19:25:11Z
Pigsonthewing
6277
improvements to coordinate template
666976
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{coords|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{{coords}}} |<!--else-->
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|0}}}|{{{lat_seconds|0}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|0}}}|{{{long_seconds|0}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
}} <!--end lat_degrees -->
}} <!--end coord -->
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|- style="vertical-align:top;"
{{#if:{{{website<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Website'''
{{!}}style="line-height:11pt;" {{!}} {{{website}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
kiwtp0i3v5j5vpzn28m32k5ppv2q4p1
666977
666976
2009-02-21T00:51:03Z
Docu
14583
coordinates in dm/decimal form (fix for [[Anaconda Range]])
666977
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{coords|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{{coords}}} |<!--else-->
{{#if:{{{lat_seconds<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|0}}}|{{{lat_seconds|0}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|0}}}|{{{long_seconds|0}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
|
{{#if:{{{lat_minutes<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|0}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|0}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
|
{{#if:{{{lat_direction<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
|
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}<!--
-->|{{{long_degrees|}}}|type:landmark|display=inline,title<!--
-->}}
}} <!--end lat_degrees -->
}} <!--end lat_direction -->
}} <!--end lat_minutes -->
}} <!--end lat_seconds -->
}} <!--end coord -->
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|- style="vertical-align:top;"
{{#if:{{{website<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Website'''
{{!}}style="line-height:11pt;" {{!}} {{{website}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
7yjnw0emer85z63rv303177lz6vm3xs
666978
666977
2009-02-21T13:01:37Z
Docu
14583
fix for [[Allegheny Islands Wilderness]]
666978
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption<includeonly>|</includeonly>}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption<includeonly>|</includeonly>}}}</small></center>
}}
|- style="vertical-align:top;"
{{#if:{{{location<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{coords|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{{coords}}} |<!--else-->
{{#if:{{{lat_seconds<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|0}}}|{{{lat_seconds|0}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|0}}}|{{{long_seconds|0}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
|
{{#if:{{{lat_minutes<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|0}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|0}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
|
{{#if:{{{lat_direction<includeonly>|</includeonly>}}} |<!--then:-->
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
}} <!--end lat_degrees -->
|
{{#if:{{{lat_degrees<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}<!--
-->|{{{long_degrees|}}}|type:landmark|display=inline,title<!--
-->}}
}} <!--end lat_degrees -->
}} <!--end lat_direction -->
}} <!--end lat_minutes -->
}} <!--end lat_seconds -->
}} <!--end coord -->
|- style="vertical-align:top;"
{{#if:{{{area<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num<includeonly>|</includeonly>}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|- style="vertical-align:top;"
{{#if:{{{website<includeonly>|</includeonly>}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Website'''
{{!}}style="line-height:11pt;" {{!}} {{{website}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
bgxksxdakk73n37pu3kqlljcqk616n3
666979
666978
2009-03-05T01:51:03Z
Droll
31361
test
666979
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category|}}} |<!--then:-->
{{!}}colspan="2" {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image|}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption|}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption|}}}</small></center>
}}
|- style="vertical-align:top;"
{{#if:{{{location|}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city|}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{coords|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{{coords}}} |<!--else-->
{{#if:{{{lat_seconds|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|0}}}|{{{lat_seconds|0}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|0}}}|{{{long_seconds|0}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
|
{{#if:{{{lat_minutes|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|0}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|0}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
|
{{#if:{{{lat_direction|}}} |<!--then:-->
{{#if:{{{lat_degrees|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
}} <!--end lat_degrees -->
|
{{#if:{{{lat_degrees|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}<!--
-->|{{{long_degrees|}}}|type:landmark|display=inline,title<!--
-->}}
}} <!--end lat_degrees -->
}} <!--end lat_direction -->
}} <!--end lat_minutes -->
}} <!--end lat_seconds -->
}} <!--end coord -->
|- style="vertical-align:top;"
{{#if:{{{area|}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established|}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num|}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body|}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site|}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|- style="vertical-align:top;"
{{#if:{{{website|}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Website'''
{{!}}style="line-height:11pt;" {{!}} {{{website}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
jfr2m9qsamf8c0ancizuqso6uy4nf0o
666980
666979
2009-03-07T07:44:41Z
Droll
31361
minor tweak - will fix all side effects
666980
wikitext
text/x-wiki
{| class="infobox vcard" style="width:{{{width|300}}}px; font-size:90%;"
!colspan="2" style="font-size:larger; text-align:center" class="fn org"| {{{name}}}{{#if:{{{native_name|}}}|<br>''{{{native_name}}}''|}}
|- style="text-align:center;"
{{#if:{{{iucn_category|}}} |<!--then:-->
{{!}} colspan="2" {{!}} {{Infobox protected area/IUCN {{{iucn_category}}} }}
}}
|-
{{#if:{{{image|}}} |<!--then:-->
{{!}}colspan="2" style="line-height:1.2;"{{!}} <div align="center" style="border:1px solid #ccc;"><!--
-->{{Superimpose
|base = {{{image}}}
|base_width = {{{base_width|288}}}px
|base_caption = {{{caption|}}}
|float = Red_pog.svg
|float_width = 9px
|float_caption = {{{name}}}
|x = {{{locator_x|}}}
|y = {{{locator_y|}}}
}}</div> <center><small>{{{caption|}}}</small></center>
}}
|- style="vertical-align:top;"
{{#if:{{{location|}}} |<!--then:-->
{{!}} '''Location'''
{{!}}style="line-height:11pt;"{{!}} <span class="label">{{{location}}}</span>
}}
|- style="vertical-align:top;"
{{#if:{{{nearest_city|}}} |<!--then:-->
{{!}} '''Nearest city'''
{{!}}style="line-height:11pt;"{{!}} {{{nearest_city}}}
}}
|- style="vertical-align:top;"
{{#if:{{{coords|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{{coords}}} |<!--else-->
{{#if:{{{lat_seconds|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|0}}}|{{{lat_seconds|0}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|0}}}|{{{long_seconds|0}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
|
{{#if:{{{lat_minutes|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_minutes|0}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_minutes|0}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
|
{{#if:{{{lat_direction|}}} |<!--then:-->
{{#if:{{{lat_degrees|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}|{{{lat_direction|}}}<!--
-->|{{{long_degrees|}}}|{{{long_direction|}}}|type:landmark|display=inline,title<!--
-->}}
}} <!--end lat_degrees -->
|
{{#if:{{{lat_degrees|}}} |<!--then:-->
{{!}} '''Coordinates'''
{{!}} {{Coord|{{{lat_degrees|}}}<!--
-->|{{{long_degrees|}}}|type:landmark|display=inline,title<!--
-->}}
}} <!--end lat_degrees -->
}} <!--end lat_direction -->
}} <!--end lat_minutes -->
}} <!--end lat_seconds -->
}} <!--end coord -->
|- style="vertical-align:top;"
{{#if:{{{area|}}} |<!--then:-->
{{!}} '''Area'''
{{!}} {{{area}}}
}}
|- style="vertical-align:top;" class="note"
{{#if:{{{established|}}} |<!--then:-->
{{!}} '''Established'''
{{!}}style="line-height:11pt;"{{!}} {{{established}}}
}}
|- style="vertical-align:top"
{{#if:{{{visitation_num|}}} |<!--then:-->
{{!}} '''Visitors'''
{{!}}style="line-height:11pt;"{{!}} {{{visitation_num}}} (in {{{visitation_year}}})
}}
|- style="vertical-align:top;"
{{#if:{{{governing_body|}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Governing body'''
{{!}}style="line-height:11pt;" {{!}} {{{governing_body}}}
}}
|- style="vertical-align:top;"
{{#if:{{{world_heritage_site|}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''World Heritage Site'''
{{!}}style="line-height:11pt;" {{!}} {{{world_heritage_site}}}
}}
|- style="vertical-align:top;"
{{#if:{{{website|}}} |<!--then:-->
{{!}}style="white-space:nowrap;"{{!}} '''Website'''
{{!}}style="line-height:11pt;" {{!}} {{{website}}}
}}
|}<noinclude>
<!--
PLEASE DO NOT ADD DOCUMENTATION/CATEGORIES/INTERWIKIS HERE
-->
{{Documentation, template}}
<!--
MAKE ADDITIONS TO THE /doc SUBPAGE INSTEAD, THANKS
-->
</noinclude>
as6v1e9632azq1swv1cspk6tb9ae2yc
666981
666980
2009-03-31T19:38:30Z
Droll
31361
replaced with updated version
666981
wikitext
text/x-wiki
<includeonly>{{Infobox2
|bodystyle = width: {{#if: {{{width|}}} | {{#ifexpr:{{{width}}}>305|{{{width}}}|305}}|305}}px
|font-size = 90 <!-- % -->
|line-height = 1.2 <!-- em -->
|bodyclass = vcard
|labelstyle = width: 100px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold; font-style: italic;
|subheader1 = {{{native_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | <!-- display IUCN banners -->
{{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] <!--
-->category was entered.</div> }}
}}
|image1 = {{#if: {{{photo|}}} |[[Image:{{{photo}}}|{{{photo_width|288}}}px|{{{photo_caption|{{{name}}}}}}]]}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{image|{{{map|}}}}}} |
{{#if: {{{locator_x|}}}{{{locator_y|}}} |
<div align=center>
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{{base_width|{{{map_width|288}}}}}}px <!-- buggy -->
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}<!-- !-- end Superimpose
-->{{#if: {{{caption|{{{map_caption|}}}}}} |{{{caption|{{{map_caption}}}}}}}}
</div>
| <!-- else no x or y -->
{{#if: {{{image|}}} | <!-- compatibility mode -->
[[image:{{{image}}}|{{{base_width|{{{map_width|288}}}}}}px|{{{caption|{{{name|}}}}}}]]
{{#if: {{{caption|}}} |<br />{{{caption}}}}}
| <!-- else must be a map -->
<div align=center>
{{Location map
| {{{map|USA}}} <!-- default necessary to avoid loop -->
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_d|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{pog|Red_pog.svg}}}
| marksize = 7
| border = none
| width = {{{map_width|288}}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| #default = none }} <!-- end switch -->
}} <!-- end Location map
-->{{#if: {{{map_caption|}}} |{{{map_caption}}}}}
</div>
}} <!-- end if image -->
}} <!-- end if x or y -->
}} <!-- end if map or image -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = landmark
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
qpsujoayys1ebln9kbkg5mgwnqysf2e
666982
666981
2009-04-03T03:46:17Z
Droll
31361
tweak
666982
wikitext
text/x-wiki
<includeonly>{{Infobox2
|bodystyle = width: {{#if: {{{width|}}} | {{#ifexpr:{{{width}}}>305|{{{width}}}|305}}|305}}px
|font-size = 90 <!-- % -->
|line-height = 1.2 <!-- em -->
|bodyclass = vcard
|labelstyle = width: 100px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold; font-style: italic;
|subheader1 = {{{native_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | <!-- display IUCN banners -->
{{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] <!--
-->category was entered.</div> }}
}}
|image1 = {{#if: {{{photo|}}} |[[Image:{{{photo}}}|{{{photo_width|288}}}px|{{{photo_caption|{{{name}}}}}}]]}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{image|{{{map|}}}}}} |
{{#if: {{{locator_x|}}}{{{locator_y|}}} |
<div align=center>
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{{base_width|{{{map_width|288}}}}}}px <!-- buggy -->
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}<!-- !-- end Superimpose
-->{{#if: {{{caption|{{{map_caption|}}}}}} |{{{caption|{{{map_caption}}}}}}}}
</div>
| <!-- else no x or y -->
{{#if: {{{image|}}} | <!-- compatibility mode -->
[[image:{{{image}}}|{{{base_width|{{{map_width|288}}}}}}px|{{{caption|{{{name|}}}}}}]]
{{#if: {{{caption|}}} |<br />{{{caption}}}}}
| <!-- else must be a map -->
<div align=center>
{{Location map
| {{{map|USA}}} <!-- default necessary to avoid loop -->
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_d|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{pog|Red_pog.svg}}}
| marksize = 7
| border = none
| width = {{if: {{{map_width|}}} | {{{map_width|}}} | 288 }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| #default = none }} <!-- end switch -->
}} <!-- end Location map
-->{{#if: {{{map_caption|}}} |{{{map_caption}}}}}
</div>
}} <!-- end if image -->
}} <!-- end if x or y -->
}} <!-- end if map or image -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = landmark
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
4979xm5ary5fisvn9r0v5375i3k8t26
666983
666982
2009-04-03T03:49:12Z
Droll
31361
opps
666983
wikitext
text/x-wiki
<includeonly>{{Infobox2
|bodystyle = width: {{#if: {{{width|}}} | {{#ifexpr:{{{width}}}>305|{{{width}}}|305}}|305}}px
|font-size = 90 <!-- % -->
|line-height = 1.2 <!-- em -->
|bodyclass = vcard
|labelstyle = width: 100px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold; font-style: italic;
|subheader1 = {{{native_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | <!-- display IUCN banners -->
{{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] <!--
-->category was entered.</div> }}
}}
|image1 = {{#if: {{{photo|}}} |[[Image:{{{photo}}}|{{{photo_width|288}}}px|{{{photo_caption|{{{name}}}}}}]]}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{image|{{{map|}}}}}} |
{{#if: {{{locator_x|}}}{{{locator_y|}}} |
<div align=center>
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{{base_width|{{{map_width|288}}}}}}px <!-- buggy -->
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}<!-- !-- end Superimpose
-->{{#if: {{{caption|{{{map_caption|}}}}}} |{{{caption|{{{map_caption}}}}}}}}
</div>
| <!-- else no x or y -->
{{#if: {{{image|}}} | <!-- compatibility mode -->
[[image:{{{image}}}|{{{base_width|{{{map_width|288}}}}}}px|{{{caption|{{{name|}}}}}}]]
{{#if: {{{caption|}}} |<br />{{{caption}}}}}
| <!-- else must be a map -->
<div align=center>
{{Location map
| {{{map|USA}}} <!-- default necessary to avoid loop -->
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_d|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{pog|Red_pog.svg}}}
| marksize = 7
| border = none
| width = {{#if: {{{map_width|}}} | {{{map_width}}} | 288 }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| #default = none }} <!-- end switch -->
}} <!-- end Location map
-->{{#if: {{{map_caption|}}} |{{{map_caption}}}}}
</div>
}} <!-- end if image -->
}} <!-- end if x or y -->
}} <!-- end if map or image -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = landmark
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
76tu533u6ay740eb9cd2v62mm5icgvb
666984
666983
2009-04-03T04:04:14Z
Droll
31361
opps
666984
wikitext
text/x-wiki
<includeonly>{{Infobox2
|bodystyle = width: {{#if: {{{width|}}} | {{#ifexpr:{{{width}}}>305|{{{width}}}|305}}|305}}px
|font-size = 90 <!-- % -->
|line-height = 1.2 <!-- em -->
|bodyclass = vcard
|labelstyle = width: 100px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold; font-style: italic;
|subheader1 = {{{native_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | <!-- display IUCN banners -->
{{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] <!--
-->category was entered.</div> }}
}}
|image1 = {{#if: {{{photo|}}} |[[Image:{{{photo}}}|{{{photo_width|288}}}px|{{{photo_caption|{{{name}}}}}}]]}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{image|{{{map|}}}}}} |
{{#if: {{{locator_x|}}}{{{locator_y|}}} |
<div align=center>
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{{base_width|{{{map_width|288}}}}}}px <!-- buggy -->
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}<!-- !-- end Superimpose
-->{{#if: {{{caption|{{{map_caption|}}}}}} |{{{caption|{{{map_caption}}}}}}}}
</div>
| <!-- else no x or y -->
{{#if: {{{image|}}} | <!-- compatibility mode -->
[[image:{{{image}}}|{{{base_width|{{{map_width|288}}}}}}px|{{{caption|{{{name|}}}}}}]]
{{#if: {{{caption|}}} |<br />{{{caption}}}}}
| <!-- else must be a map -->
<div align=center>
{{Location map
| {{{map|USA}}} <!-- default necessary to avoid loop -->
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{pog|Red_pog.svg}}}
| marksize = 7
| border = none
| width = {{#if: {{{map_width|}}} | {{{map_width}}} | 288 }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| #default = none }} <!-- end switch -->
}} <!-- end Location map
-->{{#if: {{{map_caption|}}} |{{{map_caption}}}}}
</div>
}} <!-- end if image -->
}} <!-- end if x or y -->
}} <!-- end if map or image -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = landmark
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
3fw1y64ucpf0eolznsvu82tt7i37bgo
666986
666984
2009-04-03T05:00:26Z
Droll
31361
tweak
666986
wikitext
text/x-wiki
<includeonly>{{Infobox2
|bodystyle = width: {{#if: {{{width|}}} | {{#ifexpr:{{{width}}}>305|{{{width}}}|305}}|305}}px
|font-size = 90 <!-- % -->
|line-height = 1.2 <!-- em -->
|bodyclass = vcard
|labelstyle = width: 100px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%; font-weight: bold; font-style: italic;
|subheader2 = {{{native_name|}}}
|subheader3 = {{#if: {{{iucn_category|}}} | <!-- display IUCN banners -->
{{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] <!--
-->category was entered.</div> }}
}}
|image1 = {{#if: {{{photo|}}} |[[Image:{{{photo}}}|{{{photo_width|288}}}px|{{{photo_caption|{{{name}}}}}}]]}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{image|{{{map|}}}}}} |
{{#if: {{{locator_x|}}}{{{locator_y|}}} |
<div align=center>
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{{base_width|{{{map_width|288}}}}}}px <!-- buggy -->
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}<!-- !-- end Superimpose
-->{{#if: {{{caption|{{{map_caption|}}}}}} |{{{caption|{{{map_caption}}}}}}}}
</div>
| <!-- else no x or y -->
{{#if: {{{image|}}} | <!-- compatibility mode -->
[[image:{{{image}}}|{{{base_width|{{{map_width|288}}}}}}px|{{{caption|{{{name|}}}}}}]]
{{#if: {{{caption|}}} |<br />{{{caption}}}}}
| <!-- else must be a map -->
<div align=center>
{{Location map
| {{{map|USA}}} <!-- default necessary to avoid loop -->
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{pog|Red_pog.svg}}}
| marksize = 7
| border = none
| width = {{#if: {{{map_width|}}} | {{{map_width}}} | 288 }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| #default = none }} <!-- end switch -->
}} <!-- end Location map
-->{{#if: {{{map_caption|}}} |{{{map_caption}}}}}
</div>
}} <!-- end if image -->
}} <!-- end if x or y -->
}} <!-- end if map or image -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = landmark
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
myeko8ixhan6rnb5fjv7ycsgd6ulija
666987
666986
2009-04-05T10:04:55Z
Droll
31361
version 2.01
666987
wikitext
text/x-wiki
<includeonly>{{Infobox2
|bodystyle = width: {{#if: {{{width|}}} | {{#ifexpr:{{{width}}}>305|{{{width}}}|305}}|305}}px
|font-size = 90 <!-- % -->
|line-height = 1.2 <!-- em -->
|bodyclass = vcard
|labelstyle = width: 100px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%; font-weight: bold; font-style: italic;
|subheader2 = {{{native_name|}}}
|subheader3 = {{#if: {{{iucn_category|}}} | <!-- display IUCN banners -->
{{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] <!--
-->category was entered.</div> }}
}}
|image1 = {{#if: {{{photo|}}} |[[Image:{{{photo}}}|{{{photo_width|288}}}px|{{{photo_caption|{{{name}}}}}}]]}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{image|{{{map|}}}}}} |
{{#if: {{{locator_x|}}}{{{locator_y|}}} |
<div align=center>
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{{base_width|{{{map_width|288}}}}}}px <!-- buggy -->
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}<!-- !-- end Superimpose
-->{{#if: {{{caption|{{{map_caption|}}}}}} |{{{caption|{{{map_caption}}}}}}}}
</div>
|<!-- else no x or y -->
{{#if: {{{image|}}} | <!-- compatibility mode -->
[[image:{{{image}}}|{{{base_width|{{{map_width|288}}}}}}px|{{{caption|{{{name|}}}}}}]]
{{#if: {{{caption|}}} |<br />{{{caption}}}}}
|<!-- else -->
{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
<div align=center>
{{Location map
| {{{map|USA}}} <!-- default necessary to avoid loop -->
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{pog|Red_pog.svg}}}
| marksize = 7
| border = none
| width = {{#if: {{{map_width|}}} | {{{map_width}}} | 288 }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| #default = none }} <!-- end switch -->
}}<!-- end Location map -->
</div>
|<!-- else map is just an image
-->[[image:{{{map}}}|{{{map_width|288}}}px|{{{map_caption|}}}]]
}}<!-- end if degrees
-->{{#if: {{{map_caption|}}} |<br />{{{map_caption}}}}}
}} <!-- end if image -->
}} <!-- end if x or y -->
}} <!-- end if map or image -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = landmark
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
3k54sz6tvjhszr7ecqfk8dbm1ajlphx
666988
666987
2009-04-07T01:15:11Z
Droll
31361
fixed case of map without marker and defualt image display size
666988
wikitext
text/x-wiki
{{Infobox2
|bodystyle = width: {{#if: {{{width|}}} | {{#ifexpr:{{{width}}}>305|{{{width}}}|305}}|305}}px
|font-size = 90 <!-- % -->
|line-height = 1.2 <!-- em -->
|bodyclass = vcard
|labelstyle = width: 100px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%; font-weight: bold; font-style: italic;
|subheader2 = {{{native_name|}}}
|subheader3 = {{#if: {{{iucn_category|}}} | <!-- display IUCN banners -->
{{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] <!--
-->category was entered.</div> }}
}}
|image1 = {{#if: {{{photo|}}} |[[Image:{{{photo}}}|{{#if:{{{photo_width|}}}|{{{photo_width}}}px|288px}}|{{{photo_caption|{{{name}}}}}}]]}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{image|{{{map|}}}}}} |
{{#if: {{{locator_x|}}}{{{locator_y|}}} |
<div align=center>
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{{base_width|{{{map_width|288}}}}}}px <!-- buggy -->
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}<!-- end Superimpose -->
</div>
|<!-- else no x or y -->
{{#if: {{{image|}}} | <!-- compatibility mode -->
[[image:{{{image}}}|{{#if:{{{base_width|{{{map_width|}}}}}}|{{{base_width|{{{map_width}}}}}}px|288px}}|{{{caption|{{{name|}}}}}}]]<!--
-->{{#if: {{{caption|}}} |<br />{{{caption}}}}}
|<!-- else -->
{{#ifexist: Template:Location map {{{map|XYZ}}}| <!-- is it a location map template & does it exist -->
<div align=center>
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{pog|Red_pog.svg}}}
| marksize = 7
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| #default = none }} <!-- end switch -->
}}<!-- end Location map -->
</div>
|<!-- else map is just an image file -->
[[image:{{{map}}}|{{#if:{{{map_width|}}}|{{{map_width}}}px|288px}}|{{{map_caption|}}}]]
}}<!-- end if degrees -->
}} <!-- end if image -->
}} <!-- end if x or y -->
{{#if: {{{caption|{{{map_caption|}}}}}} |{{{caption|{{{map_caption}}}}}}}}
}} <!-- end if map or image -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = landmark
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
e9e8ir33n0bkn9vnw8spw9rl0ct5jy7
666990
666988
2009-04-09T08:51:53Z
Droll
31361
tweak
666990
wikitext
text/x-wiki
{{Infobox2
|bodystyle = width: 305; <!-- {{#if: {{{width|}}} | {{#ifexpr:{{{width}}}>305|{{{width}}}|305}}|305}}px -->
|font-size = 90 <!-- % -->
|line-height = 1.2 <!-- em -->
|bodyclass = vcard
|labelstyle = width: 100px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%; font-weight: bold; font-style: italic;
|subheader2 = {{{native_name|}}}
|subheader3 = {{#if: {{{iucn_category|}}} | <!-- display IUCN banners -->
{{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] <!--
-->category was entered.</div> }}
}}
|image1 = {{#if: {{{photo|}}} |[[Image:{{{photo}}}|{{#if:{{{photo_width|}}}|{{{photo_width}}}px|288px}}|{{{photo_caption|{{{name}}}}}}]]}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{image|{{{map|}}}}}} |
{{#if: {{{locator_x|}}}{{{locator_y|}}} |
<div align=center>
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{{base_width|{{{map_width|288}}}}}}px <!-- buggy -->
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}<!-- end Superimpose -->
</div>
|<!-- else no x or y -->
{{#if: {{{image|}}} | <!-- compatibility mode -->
[[image:{{{image}}}|{{#if:{{{base_width|{{{map_width|}}}}}}|{{{base_width|{{{map_width}}}}}}px|288px}}|{{{caption|{{{name|}}}}}}]]<!--
-->{{#if: {{{caption|}}} |<br />{{{caption}}}}}
|<!-- else -->
{{#ifexist: Template:Location map {{{map|XYZ}}}| <!-- is it a location map template & does it exist -->
<div align=center>
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{pog|Red_pog.svg}}}
| marksize = 7
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| #default = none }} <!-- end switch -->
}}<!-- end Location map -->
</div>
|<!-- else map is just an image file -->
[[image:{{{map}}}|{{#if:{{{map_width|}}}|{{{map_width}}}px|288px}}|{{{map_caption|}}}]]
}}<!-- end if degrees -->
}} <!-- end if image -->
}} <!-- end if x or y -->
{{#if: {{{caption|{{{map_caption|}}}}}} |{{{caption|{{{map_caption}}}}}}}}
}} <!-- end if map or image -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = landmark
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
er70a1rfqh1i304iv2pgbdxy0epfgnx
666991
666990
2009-04-10T07:12:55Z
Droll
31361
added a visitation_ref field
666991
wikitext
text/x-wiki
<!--<includeonly>-->{{Infobox2
|bodystyle = width: {{#if: {{{width|}}} | {{#ifexpr:{{{width}}}>305|{{{width}}}|305}}|305}}px
|font-size = 90 <!-- % -->
|line-height = 1.2 <!-- em -->
|bodyclass = vcard
|labelstyle = width: 100px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%; font-weight: bold; font-style: italic;
|subheader2 = {{{native_name|}}}
|subheader3 = {{#if: {{{iucn_category|}}} | <!-- display IUCN banners -->
{{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] <!--
-->category was entered.</div> }}
}}
|image1 = {{#if: {{{photo|}}} |[[Image:{{{photo}}}|{{#if:{{{photo_width|}}}|{{{photo_width}}}px|288px}}|{{{photo_caption|{{{name}}}}}}]]}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{image|{{{map|}}}}}} |
{{#if: {{{locator_x|}}}{{{locator_y|}}} |
<div align=center>
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{{base_width|{{{map_width|288}}}}}}px <!-- buggy -->
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}<!-- end Superimpose -->
</div>
|<!-- else no x or y -->
{{#if: {{{image|}}} | <!-- compatibility mode -->
[[image:{{{image}}}|{{#if:{{{base_width|{{{map_width|}}}}}}|{{{base_width|{{{map_width}}}}}}px|288px}}|{{{caption|{{{name|}}}}}}]]<!--
-->{{#if: {{{caption|}}} |<br />{{{caption}}}}}
|<!-- else -->
{{#ifexist: Template:Location map {{{map|XYZ}}}| <!-- is it a location map template & does it exist -->
<div align=center>
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{pog|Red_pog.svg}}}
| marksize = 7
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| #default = none }} <!-- end switch -->
}}<!-- end Location map -->
</div>
|<!-- else map is just an image file -->
[[image:{{{map}}}|{{#if:{{{map_width|}}}|{{{map_width}}}px|288px}}|{{{map_caption|}}}]]
}}<!-- end if degrees -->
}} <!-- end if image -->
}} <!-- end if x or y -->
{{#if: {{{caption|{{{map_caption|}}}}}} |{{{caption|{{{map_caption}}}}}}}}
}} <!-- end if map or image -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = landmark
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
23ecy3tbjuzvsm8zmx649611jglrrpf
666992
666991
2009-04-10T21:19:12Z
Droll
31361
added type field for {{coord}}
666992
wikitext
text/x-wiki
<includeonly>{{Infobox2
|bodystyle = width: {{#if: {{{width|}}} | {{#ifexpr:{{{width}}}>305|{{{width}}}|305}}|305}}px
|font-size = 90 <!-- % -->
|line-height = 1.2 <!-- em -->
|bodyclass = vcard
|labelstyle = width: 100px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%; font-weight: bold; font-style: italic;
|subheader2 = {{{native_name|}}}
|subheader3 = {{#if: {{{iucn_category|}}} | <!-- display IUCN banners -->
{{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] <!--
-->category was entered.</div> }}
}}
|image1 = {{#if: {{{photo|}}} |[[Image:{{{photo}}}|{{#if:{{{photo_width|}}}|{{{photo_width}}}px|288px}}|{{{photo_caption|{{{name}}}}}}]]}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{image|{{{map|}}}}}} |
{{#if: {{{locator_x|}}}{{{locator_y|}}} |
<div align=center>
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{{base_width|{{{map_width|288}}}}}}px <!-- buggy -->
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{{locator_x|}}}
| y = {{{locator_y|}}}
}}<!-- end Superimpose -->
</div>
|<!-- else no x or y -->
{{#if: {{{image|}}} | <!-- compatibility mode -->
[[image:{{{image}}}|{{#if:{{{base_width|{{{map_width|}}}}}}|{{{base_width|{{{map_width}}}}}}px|288px}}|{{{caption|{{{name|}}}}}}]]<!--
-->{{#if: {{{caption|}}} |<br />{{{caption}}}}}
|<!-- else -->
{{#ifexist: Template:Location map {{{map|XYZ}}}| <!-- is it a location map template & does it exist -->
<div align=center>
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{pog|Red_pog.svg}}}
| marksize = 7
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| #default = none }} <!-- end switch -->
}}<!-- end Location map -->
</div>
|<!-- else map is just an image file -->
[[image:{{{map}}}|{{#if:{{{map_width|}}}|{{{map_width}}}px|288px}}|{{{map_caption|}}}]]
}}<!-- end if degrees -->
}} <!-- end if image -->
}} <!-- end if x or y -->
{{#if: {{{caption|{{{map_caption|}}}}}} |{{{caption|{{{map_caption}}}}}}}}
}} <!-- end if map or image -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
fmvat3wkxk7jq0hsyn8whsrmschl3sz
666993
666992
2009-04-14T02:06:59Z
Droll
31361
revised version
666993
wikitext
text/x-wiki
<includeonly>{{User:Droll/infobox2
|bodyclass = vcard
|bodystyle = width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;
|labelstyle = width: 95px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%;
|subheader2 = {{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}
|subheader3 = {{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}
|image = {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}}
|caption = {{{photo_caption|}}}
|caption = {{{photo_caption|}}}
|image1 = {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} | <!-- does a location map template exist -->
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}} <!-- end switch -->
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{pog|Red_pog.svg}}}
| marksize = 7
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}} <!-- end Location map -->
| <!-- else it is an image -->
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}<!-- end Superimpose -->
}}
</div> <!-- end align center -->
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} <!-- end if image or map -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
jpv242ohll6gx6ejbu8xqlxxgmietb2
666994
666993
2009-04-14T23:38:07Z
209.216.175.151
opps
666994
wikitext
text/x-wiki
<includeonly>{{User:Droll/infobox2
|bodyclass = vcard
|bodystyle = width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;
|labelstyle = width: 95px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%;
|subheader2 = {{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}
|subheader3 = {{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}
|image = {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}}
|caption = {{{photo_caption|}}}
|caption = {{{photo_caption|}}}
|image1 = {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} | <!-- does a location map template exist -->
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}} <!-- end switch -->
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}px
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}} <!-- end Location map -->
| <!-- else it is an image -->
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}<!-- end Superimpose -->
}}
</div> <!-- end align center -->
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} <!-- end if image or map -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
06ox59xihyunxu1rhib3fi91u8c7g0l
666996
666994
2009-04-14T23:39:11Z
209.216.175.151
fix
666996
wikitext
text/x-wiki
<includeonly>{{User:Droll/infobox2
|bodyclass = vcard
|bodystyle = width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;
|labelstyle = width: 95px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%;
|subheader2 = {{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}
|subheader3 = {{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}
|image = {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}}
|caption = {{{photo_caption|}}}
|caption = {{{photo_caption|}}}
|image1 = {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} | <!-- does a location map template exist -->
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}} <!-- end switch -->
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}} <!-- end Location map -->
| <!-- else it is an image -->
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}<!-- end Superimpose -->
}}
</div> <!-- end align center -->
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} <!-- end if image or map -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
l2b2iccn8y4wr3c0mnmmoo1khpp6q93
666998
666996
2009-04-15T08:01:23Z
Droll
31361
add hidden category code
666998
wikitext
text/x-wiki
<includeonly>{{User:Droll/infobox2
|bodyclass = vcard
|bodystyle = width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;
|labelstyle = width: 95px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%;
|subheader2 = {{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}
|subheader3 = {{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}
|image = {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}}
|caption = {{{photo_caption|}}}
|caption = {{{photo_caption|}}}
|image1 = {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} | <!-- does a location map template exist -->
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}} <!-- end switch -->
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}} <!-- end Location map -->
| <!-- else it is an image -->
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}<!-- end Superimpose -->
}}
</div> <!-- end align center -->
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} <!-- end if image or map -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#if:{{{image}}}{{{base_width}}}{{{caption}}}{{{lat_degrees}}}{{{lat_minutes}}}{{{lat_seconds}}}{{{lat_direction}}}{{{long_degrees}}}{{{long_minutes}}}{{{long_seconds}}}{{{long_direction}}}|[[Category:Protected area articles requiring maintenance]]}}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
4inqoc53xn94blybka1kaotakuzbx9m
667000
666998
2009-04-15T08:16:39Z
Droll
31361
tweak
667000
wikitext
text/x-wiki
<includeonly>{{User:Droll/infobox2
|bodyclass = vcard
|bodystyle = width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;
|labelstyle = width: 95px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%;
|subheader2 = {{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}
|subheader3 = {{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}
|image = {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}}
|caption = {{{photo_caption|}}}
|caption = {{{photo_caption|}}}
|image1 = {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} | <!-- does a location map template exist -->
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}} <!-- end switch -->
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}} <!-- end Location map -->
| <!-- else it is an image -->
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}<!-- end Superimpose -->
}}
</div> <!-- end align center -->
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} <!-- end if image or map -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#ifeq:{{NAMESPACE}}||{{#if:{{{image}}}{{{base_width}}}{{{caption}}}{{{lat_degrees}}}{{{lat_minutes}}}{{{lat_seconds}}}{{{lat_direction}}}{{{long_degrees}}}{{{long_minutes}}}{{{long_seconds}}}{{{long_direction}}}|[[Category:Protected area articles requiring maintenance]]}}}}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
9gcb6420xu4vgpz5uen8op5fyjvx34q
667002
667000
2009-05-06T23:51:28Z
Droll
31361
update
667002
wikitext
text/x-wiki
<includeonly>{{User:Droll/infobox2
|bodyclass = vcard
|bodystyle = width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;
|labelstyle = width: 95px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%;
|subheader2 = {{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}
|subheader3 = {{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}
|image = {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}}
|caption = {{{photo_caption|}}}
|caption = {{{photo_caption|}}}
|image1 = {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} | <!-- does a location map template exist -->
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}} <!-- end switch -->
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}} <!-- end Location map -->
| <!-- else it is an image -->
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}<!-- end Superimpose -->
}}
</div> <!-- end align center -->
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} <!-- end if image or map -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#ifeq:{{NAMESPACE}}||{{#if:{{{image}}}{{{base_width}}}{{{caption}}}{{{lat_degrees}}}{{{lat_minutes}}}{{{lat_seconds}}}{{{lat_direction}}}{{{long_degrees}}}{{{long_minutes}}}{{{long_seconds}}}{{{long_direction}}}|[[Category:Protected area articles requiring maintenance]]}}}}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
30eu174ddjrdqxsqh8o7mkxlm2slgip
667005
667002
2009-08-06T01:07:06Z
Jimp
37906
autoconversion for area
667005
wikitext
text/x-wiki
<includeonly>{{User:Droll/infobox2
|bodyclass = vcard
|bodystyle = width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;
|labelstyle = width: 95px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%;
|subheader2 = {{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}
|subheader3 = {{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}
|image = {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}}
|caption = {{{photo_caption|}}}
|caption = {{{photo_caption|}}}
|image1 = {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} | <!-- does a location map template exist -->
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}} <!-- end switch -->
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}} <!-- end Location map -->
| <!-- else it is an image -->
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}<!-- end Superimpose -->
}}
</div> <!-- end align center -->
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} <!-- end if image or map -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#ifeq:{{NAMESPACE}}||{{#if:{{{image}}}{{{base_width}}}{{{caption}}}{{{lat_degrees}}}{{{lat_minutes}}}{{{lat_seconds}}}{{{lat_direction}}}{{{long_degrees}}}{{{long_minutes}}}{{{long_seconds}}}{{{long_direction}}}|[[Category:Protected area articles requiring maintenance]]}}}}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
qsajfx0lemmvs8jnjev7sl5iky5g49q
667007
667005
2009-08-15T18:18:12Z
Droll
31361
problem fixed
667007
wikitext
text/x-wiki
<includeonly>{{infobox2
|bodyclass = vcard
|bodystyle = width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;
|labelstyle = width: 95px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%;
|subheader2 = {{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}
|subheader3 = {{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}
|image = {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}}
|caption = {{{photo_caption|}}}
|caption = {{{photo_caption|}}}
|image1 = {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} | <!-- does a location map template exist -->
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}} <!-- end switch -->
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}} <!-- end Location map -->
| <!-- else it is an image -->
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}<!-- end Superimpose -->
}}
</div> <!-- end align center -->
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} <!-- end if image or map -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#ifeq:{{NAMESPACE}}||{{#if:{{{image}}}{{{base_width}}}{{{caption}}}{{{lat_degrees}}}{{{lat_minutes}}}{{{lat_seconds}}}{{{lat_direction}}}{{{long_degrees}}}{{{long_minutes}}}{{{long_seconds}}}{{{long_direction}}}|[[Category:Protected area articles requiring maintenance]]}}}}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
qt8dpauwrfj9j7qn2rv4d432m8m6ezn
667009
667007
2009-08-15T19:28:05Z
Pigsonthewing
6277
fix microformat
667009
wikitext
text/x-wiki
<includeonly>{{infobox2
|bodyclass = vcard
|bodystyle = width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;
|labelstyle = width: 95px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn org
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%;
|subheader2 = {{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}
|subheader3 = {{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}
|image = {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}}
|caption = {{{photo_caption|}}}
|caption = {{{photo_caption|}}}
|image1 = {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} | <!-- does a location map template exist -->
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}} <!-- end switch -->
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}} <!-- end Location map -->
| <!-- else it is an image -->
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}<!-- end Superimpose -->
}}
</div> <!-- end align center -->
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} <!-- end if image or map -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#ifeq:{{NAMESPACE}}||{{#if:{{{image}}}{{{base_width}}}{{{caption}}}{{{lat_degrees}}}{{{lat_minutes}}}{{{lat_seconds}}}{{{lat_direction}}}{{{long_degrees}}}{{{long_minutes}}}{{{long_seconds}}}{{{long_direction}}}|[[Category:Protected area articles requiring maintenance]]}}}}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
9jhsd5jvig30btadloribbb4z3qp7lr
667011
667009
2009-08-18T13:02:57Z
MSGJ
14482
substitute [[Template:infobox2]]
667011
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader
-->{{#if: |<tr><td colspan="2" class="" style="text-align:center; "> {{{subheader}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}</td></tr>}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}<!--
Row 10
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 11
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 12
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 13
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 14
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 15
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 16
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 17
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 18
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 19
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 20
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 21
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 22
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 23
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 24
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 25
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 26
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 27
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 28
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 29
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 30
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 31
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 32
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 33
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 34
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 35
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 36
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 37
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 38
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 39
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 40
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 41
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 42
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 43
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 44
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 45
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 46
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 47
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 48
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 49
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 50
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 51
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 52
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 53
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 54
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 55
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 56
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 57
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 58
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 59
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 60
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 61
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 62
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 63
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 64
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 65
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 66
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 67
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 68
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 69
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 70
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 71
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 72
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 73
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 74
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 75
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 76
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 77
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 78
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 79
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Row 80
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:|{{#if:|<tr><th style="width: 95px;"></th><td class="" style=""></td></tr>}}| {{#if:|<tr><td colspan="2" class="" style="text-align:center; "></td></tr>}} }} }}<!--
Below
-->{{#if:|<tr><td colspan="2" style="text-align:center; "></td></tr>}}<!--
Tnavbar
-->{{#if:|<tr><td style="text-align:right;" colspan="2">{{Tnavbar|{{{name}}}|noedit=0}}</td></tr>}}
</table><noinclude>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#ifeq:{{NAMESPACE}}||{{#if:{{{image}}}{{{base_width}}}{{{caption}}}{{{lat_degrees}}}{{{lat_minutes}}}{{{lat_seconds}}}{{{lat_direction}}}{{{long_degrees}}}{{{long_minutes}}}{{{long_seconds}}}{{{long_direction}}}|[[Category:Protected area articles requiring maintenance]]}}}}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
p279tqdmof62qvga7jqaefmd9cjeh66
667012
667011
2009-08-18T13:04:52Z
MSGJ
14482
remove unused rows
667012
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}</td></tr>}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><noinclude>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#ifeq:{{NAMESPACE}}||{{#if:{{{image}}}{{{base_width}}}{{{caption}}}{{{lat_degrees}}}{{{lat_minutes}}}{{{lat_seconds}}}{{{lat_direction}}}{{{long_degrees}}}{{{long_minutes}}}{{{long_seconds}}}{{{long_direction}}}|[[Category:Protected area articles requiring maintenance]]}}}}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
hhnhr66auh4mw76uyjecklzd848348f
667014
667012
2009-08-18T13:08:11Z
PC78
14625
add hidden category; I'd like to see where and how these subheaders are being used
667014
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}</td></tr>}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><noinclude>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#ifeq:{{NAMESPACE}}||{{#if:{{{image}}}{{{base_width}}}{{{caption}}}{{{lat_degrees}}}{{{lat_minutes}}}{{{lat_seconds}}}{{{lat_direction}}}{{{long_degrees}}}{{{long_minutes}}}{{{long_seconds}}}{{{long_direction}}}|[[Category:Protected area articles requiring maintenance]]}}}}{{#if:{{{designation}}}{{{alt_name}}}{{{native_name}}}|[[Category:Use of subheaders in Infobox Protected area]]}}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
ttrp97jeyepik3sd3wel0tu901ui133
667015
667014
2009-08-18T13:10:58Z
MSGJ
14482
i think you need to specify empty defaults for this to work
667015
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}</td></tr>}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><noinclude>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#ifeq:{{NAMESPACE}}||{{#if:{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}}|[[Category:Protected area articles requiring maintenance]]}}}}{{#if:{{{designation|}}}{{{alt_name|}}}{{{native_name|}}}|[[Category:Use of subheaders in Infobox Protected area]]}}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
29qpkifhpx2jo6rgntgv4f3wvz9sskm
667016
667015
2009-08-20T05:58:15Z
Droll
31361
tweak articles requiring maintenance cat
667016
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}</td></tr>}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><noinclude>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#if:{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}}|[[Category:Protected area articles requiring maintenance]]}}
{{#if:{{{designation|}}}{{{alt_name|}}}{{{native_name|}}}|[[Category:Use of subheaders in Infobox Protected area]]}}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
4exvuzgj7sm5rq37b08k1xitrrbi72h
667017
667016
2009-08-20T21:22:48Z
Droll
31361
fixing trouble with maintenance categories
667017
wikitext
text/x-wiki
<includeonly><table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}</td></tr>}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table></includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude><includeonly>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#if:{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}}|[[Category:Protected area articles requiring maintenance]]}}
{{#if:{{{designation|}}}{{{alt_name|}}}{{{native_name|}}}|[[Category:Use of subheaders in Infobox Protected area]]}}
</includeonly>
6viwrkucq6m7a8pg2j47xyzcx866f8h
667019
667017
2009-08-20T21:30:00Z
Droll
31361
test
667019
wikitext
text/x-wiki
<includeonly><table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}</td></tr>}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table></includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude><includeonly>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#if: {{{image|}}}
{{{base_width|}}}
{{{caption|}}}
{{{lat_degrees|}}}
{{{lat_minutes|}}}
{{{lat_seconds|}}}
{{{lat_direction|}}}
{{{long_degrees|}}}
{{{long_minutes|}}}
{{{long_seconds|}}}
{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance]] }}
{{#if: {{{designation|}}}
{{{alt_name|}}}
{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area]] }}
</includeonly>
tf8601jma6b7moyzoxtis7ttlxlvmwu
667021
667019
2009-08-20T21:41:03Z
Droll
31361
test
667021
wikitext
text/x-wiki
<includeonly><table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}</td></tr>}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table></includeonly><noinclude>
{{#if: {{{image}}}
{{{base_width}}}
{{{caption}}}
{{{lat_degrees}}}
{{{lat_minutes}}}
{{{lat_seconds}}}
{{{lat_direction}}}
{{{long_degrees}}}
{{{long_minutes}}}
{{{long_seconds}}}
{{{long_direction}}} | [[Category:Protected area articles requiring maintenance]] }}
{{#if: {{{designation}}}
{{{alt_name}}}
{{{native_name}}} | [[Category:Use of subheaders in Infobox Protected area]] }}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude><includeonly>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
</includeonly>
s22j0al5iw6z095z7lf6itdrui04ean
667022
667021
2009-08-21T01:04:51Z
Droll
31361
this is the way [[User:Happy-melon|Happy-melon]] does it (see [[template:cite web|cite web]])
667022
wikitext
text/x-wiki
<includeonly><table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}</td></tr>}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table>{{#if: {{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{FULLPAGENAME}}]]}}
</includeonly><noinclude>
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
pb322uhbz2usw6oed50f0zmup9af5hq
667023
667022
2009-08-21T08:48:02Z
MSGJ
14482
remove stray includeonly
667023
wikitext
text/x-wiki
<includeonly><table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}</td></tr>}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table>{{#if: {{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
dopr1gd3ut4lj97r4971jnme9ieqmw1
667024
667023
2009-08-21T08:48:57Z
MSGJ
14482
okay, it wasn't stray, but remove this one as well
667024
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}</td></tr>}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table>{{#if: {{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
a6jronv72xhpg4q6c6111qrq9np244i
667025
667024
2009-08-21T09:06:04Z
MSGJ
14482
fixing horrible coding for alt_name
667025
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table>{{#if: {{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
o364ozuo9orgtx9if2nisxn4st1oyvn
667026
667025
2009-08-21T10:04:17Z
MSGJ
14482
add sortkey to find out if "designation" is used anywhere at all
667026
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table>{{#if: {{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
g6hk5bb341shekt0mf7x9ukatuyxc7e
667027
667026
2009-08-21T15:22:56Z
Droll
31361
tweak
667027
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table>{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{#ifeq:{{NAMESPACE}}||{{#if: {{{website|}}}{{{native_nave|}}}{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}}}
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
8pjuco91zzzbdfird8rzfxkknr2elnz
667029
667027
2009-08-21T15:24:39Z
MSGJ
14482
[[WP:UNDO|Undid]] revision 309261461 by [[Special:Contributions/Droll|Droll]] ([[User talk:Droll|talk]]) - noinclude error
667029
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table>{{#if: {{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
g6hk5bb341shekt0mf7x9ukatuyxc7e
667030
667029
2009-08-21T15:28:42Z
Droll
31361
hummm
667030
wikitext
text/x-wiki
<includeonly>{{User:Droll/infobox2
|bodyclass = vcard
|bodystyle = width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;
|labelstyle = width: 95px;
|above = {{{name}}}
|abovestyle =
|aboveclass = fn {{#if: {{{governing_body|}}} ||org}} <!-- if no governing body then org is included here -->
|subheader1style = font-size: 110%; font-weight: bold;
|subheader1 = {{{designation|}}}
|subheader2style = font-size: 110%;
|subheader2 = {{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>}}
|subheader3 = {{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia <!--
-->([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib <!--
-->([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II <!--
-->([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III <!--
-->([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV <!--
-->(Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V <!--
-->(Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI <!--
-->(Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}
|image = {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}}
|caption = {{{photo_caption|}}}
|caption = {{{photo_caption|}}}
|image1 = {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} | <!-- does a location map template exist -->
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| dir = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| dir = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}} <!-- end switch -->
| float = none
| caption = <!-- must be undefined -->
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}} <!-- end Location map -->
| <!-- else it is an image -->
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}} <!-- text displayed when mouse is over the map -->
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}} <!-- text displayed when mouse is over the marker -->
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}<!-- end Superimpose -->
}}
</div> <!-- end align center -->
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} <!-- end if image or map -->
|label1 = Location
|data1 = {{{location|}}}
|class1 = locality
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
| <!-- else no degrees -->
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}
|label4 = Area
|data4 = {{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|class7 = org
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}} <!-- format as an external link -->
|class9 = url
}}</includeonly><noinclude>
<!-- ADD PAGES USING DEPRECATED FIELD NAMES TO HIDDEN CATEGORY -->
{{#ifeq:{{NAMESPACE}}||{{#if:{{{image}}}{{{base_width}}}{{{caption}}}{{{lat_degrees}}}{{{lat_minutes}}}{{{lat_seconds}}}{{{lat_direction}}}{{{long_degrees}}}{{{long_minutes}}}{{{long_seconds}}}{{{long_direction}}}|[[Category:Protected area articles requiring maintenance]]}}}}
{{Documentation|Template:{{PAGENAME}}/doc}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
9gcb6420xu4vgpz5uen8op5fyjvx34q
667031
667030
2009-08-21T15:29:47Z
Droll
31361
[[WP:RBK|Reverted]] edits by [[Special:Contributions/Droll|Droll]] ([[User talk:Droll|talk]]) to last version by MSGJ
667031
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table>{{#if: {{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
g6hk5bb341shekt0mf7x9ukatuyxc7e
667032
667031
2009-08-21T15:44:06Z
Droll
31361
reedited maintenance code - please leave it alone
667032
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table>
{{#ifeq:{{NAMESPACE}}||{{#if: {{{website|}}}{{{native_nave|}}}{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}}}
{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
hux1irem3h87ex03z169q5xavlo7jeh
667033
667032
2009-08-21T15:49:02Z
Droll
31361
tweak
667033
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table>
{{#if:{{NAMESPACE}}|{{#if: {{{website|}}}{{{native_nave|}}}{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}}}
{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
nivbz8p7fx83j1jeilwg2e6v1dcdd3e
667034
667033
2009-08-21T23:08:22Z
MSGJ
14482
you must fill gaps with html comment otherwise the template may produce extra line spaces
667034
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><!--
-->{{#if:{{NAMESPACE}}|{{#if: {{{website|}}}{{{native_nave|}}}{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}}}<!--
-->{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
1p1izwwh1kxcfajo1kncn6rpgf3dtjr
667035
667034
2009-08-22T01:34:51Z
Droll
31361
well that didn't work
667035
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><!--
-->{{#if: {{{website|}}}{{{native_nave|}}}{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}<!--
-->{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
ot1esrl2ddz2m48axppvy4pyg6x924s
667036
667035
2009-08-26T22:47:25Z
Rich Farmbrough
819
Protected Template:Infobox Protected area: [[WP:HRT|Highly visible template]] ([edit=sysop] (indefinite) [move=sysop] (indefinite))
667035
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><!--
-->{{#if: {{{website|}}}{{{native_nave|}}}{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}<!--
-->{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
ot1esrl2ddz2m48axppvy4pyg6x924s
667037
667036
2009-08-26T22:48:22Z
Rich Farmbrough
819
moved [[Template:Infobox Protected area]] to [[Template:Infobox protected area]]: Caps per guidelines
667035
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{label|{{{map_caption|}}}}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_caption = {{{label|{{{name}}}}}}
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><!--
-->{{#if: {{{website|}}}{{{native_nave|}}}{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}<!--
-->{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
ot1esrl2ddz2m48axppvy4pyg6x924s
667038
667037
2009-10-19T21:36:50Z
TheDJ
4008
per talkpage edit request: [[WP:ACCESSIBILITY]] improvements
667038
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px |alt={{{photo_alt|}}} | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px |alt={{{photo_alt|}}} | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{map_alt|}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_alt = {{{map_alt|}}}
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_link =
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{map_alt|}}}
| mark = {{{marker|Red_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_alt = {{{map_alt|}}}
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Red_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_link =
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><!--
-->{{#if: {{{website|}}}{{{native_nave|}}}{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}<!--
-->{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
s7xx0mvqsyif2l7wcljvyvke161uvuh
667041
667038
2009-12-06T23:40:16Z
Plastikspork
14478
Switch to green dot (revert if this is a problem)
667041
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px |alt={{{photo_alt|}}} | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px |alt={{{photo_alt|}}} | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{map_alt|}}}
| mark = {{{marker|Green_dot.svg}}}
| marksize = {{{marker_size|8}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_alt = {{{map_alt|}}}
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Green_dot.svg}}}
| float_width = {{{marker_size|8}}}px
| float_link =
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{map_alt|}}}
| mark = {{{marker|Green_dot.svg}}}
| marksize = {{{marker_size|8}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_alt = {{{map_alt|}}}
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Green_dot.svg}}}
| float_width = {{{marker_size|8}}}px
| float_link =
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><!--
-->{{#if: {{{website|}}}{{{native_nave|}}}{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}<!--
-->{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
qk2sdk4vyxrj6avs7ebf6ygdxhuq3fr
667044
667041
2009-12-06T23:43:16Z
Plastikspork
14478
Switch to green pog (revert if this is a problem)
667044
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px |alt={{{photo_alt|}}} | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px |alt={{{photo_alt|}}} | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{map_alt|}}}
| mark = {{{marker|Green_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_alt = {{{map_alt|}}}
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_link =
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{map_alt|}}}
| mark = {{{marker|Green_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_alt = {{{map_alt|}}}
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_link =
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><!--
-->{{#if: {{{website|}}}{{{native_nave|}}}{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}<!--
-->{{#if: {{{designation|}}}{{{alt_name|}}}{{{native_name|}}} | [[Category:Use of subheaders in Infobox Protected area|{{#if:{{{designation|}}}|D}}{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
2yf34zqjo343btqs5saw3h6u6kol9uw
667046
667044
2010-07-07T08:49:09Z
MSGJ
14482
tweaks to tracking categories, per request
667046
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px |alt={{{photo_alt|}}} | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px |alt={{{photo_alt|}}} | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{map_alt|}}}
| mark = {{{marker|Green_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_alt = {{{map_alt|}}}
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_link =
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{map_alt|}}}
| mark = {{{marker|Green_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_alt = {{{map_alt|}}}
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_link =
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><!--
-->{{#if: {{{native_nave|}}}{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance|{{FULLPAGENAME}}]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
e44cv6mth0c8u3kwbm5qd1rgrr4x7wk
667048
667046
2010-08-10T08:31:16Z
MSGJ
14482
tweak to maintenance category, per request
667048
wikitext
text/x-wiki
<table class="infobox vcard" style="width: 300px; text-align: left; font-size: 90%; line-height: 1.25em;"><!--
Caption
-->{{#if:|<caption class="" style="font-size: 125%; font-weight: bold; ">{{{title}}}</caption>}}
<!--
Header
-->{{#if:{{{name}}}|<tr><td colspan="2" class="fn org" style="text-align:center; font-size: 125%; font-weight: bold; ">{{{name}}}</td></tr>}}<!--
Subheader1
-->{{#if:{{{designation|}}}|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%; font-weight: bold;">{{{designation|}}}</td></tr>}}<!--
Subheader2
-->{{#if:{{{alt_name|}}}{{{native_name|}}}
|<tr><td colspan="2" class="" style="text-align:center; font-size: 110%;">{{#if: {{{alt_name|}}}
|{{{alt_name}}}
|<div style="font-weight: bold; font-style: italic;">{{{native_name|}}}</div>
}}</td></tr>
}}<!--
Subheader3
-->{{#if:{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{iucn_category|}}} <!-- display IUCN banners -->
| {{#switch: {{uc:{{{iucn_category}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown [[World_Commission_on_Protected_Areas|IUCN]] category was entered.</div>
}}
}}</td></tr>}}<!--
Subheader4
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader4}}}</td></tr>}}<!--
Subheader5
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; ">{{{subheader5}}}</td></tr>}}<!--
Image
-->{{#if:{{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px |alt={{{photo_alt|}}} | {{{photo_caption|{{{name}}}}}}]]}} |<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{photo|}}} |
[[file:{{{photo}}} | {{least|{{{photo_width|}}}|283}}px |alt={{{photo_alt|}}} | {{{photo_caption|{{{name}}}}}}]]}} {{#if:{{{photo_caption|}}} |<br /><span style=""> {{{photo_caption|}}} </span> }}</td></tr>}}<!--
Image1
-->{{#if:{{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{map_alt|}}}
| mark = {{{marker|Green_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_alt = {{{map_alt|}}}
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_link =
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; "> {{#if: {{{image|{{{map|}}}}}} |
<div align="center">
{{#ifexist: Template:Location map {{{map|XYZ}}} |
{{Location map
| {{{map}}}
| label = {{{label|{{{name}}}}}}
| lat = {{decdeg
| deg = {{{lat_d|{{{lat_degrees|}}}}}}
| min = {{{lat_m|{{{lat_minutes|}}}}}}
| sec = {{{lat_s|{{{lat_seconds|}}}}}}
| hem = {{{lat_NS|{{{lat_direction|}}}}}}
}}
| long = {{decdeg
| deg = {{{long_d|{{{long_degrees|}}}}}}
| min = {{{long_m|{{{long_minutes|}}}}}}
| sec = {{{long_s|{{{long_seconds|}}}}}}
| hem = {{{long_EW|{{{long_direction|}}}}}}
}}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left
| right = right
| top = top
| bottom = bottom
| none = none
| #default = none
}}
| float = none
| caption =
| alt = {{{map_alt|}}}
| mark = {{{marker|Green_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{#if:{{{map_width|}}}|{{{map_width}}}|288}}
}}
|
{{Superimpose
| base = {{{image|{{{map|}}}}}}
| base_width = {{least|{{{base_width|{{{map_width|}}}}}}|283}}px
| base_alt = {{{map_alt|}}}
| base_caption = {{{caption|{{{map_caption|}}}}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_link =
| x = {{#if:{{{locator_x|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x}}} }}}}
| y = {{#if:{{{locator_y|}}}|{{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y}}} }}}}
}}
}}
</div>
{{#if: {{{map_caption|{{{caption|}}}}}} |{{{map_caption|{{{caption|}}}}}}}}
}} {{#if:|<br /><span style="">{{{caption1}}}</span> }}</td></tr>}}<!--
Image2
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image2}}} {{#if:|<br /><span style="">{{{caption2}}}</span> }}</td></tr>}}<!--
Image3
-->{{#if:|<tr><td colspan="2" class="" style="text-align:center; "> {{{image3}}} {{#if:|<br /><span style="">{{{caption3}}}</span> }}</td></tr>}}<!--
Row 1
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Location|{{#if:{{{location|}}}|<tr><th style="width: 95px;">Location</th><td class="locality" style="">{{{location|}}}</td></tr>}}| {{#if:{{{location|}}}|<tr><td colspan="2" class="locality" style="text-align:center; ">{{{location|}}}</td></tr>}} }} }}<!--
Row 2
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Nearest city|{{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><th style="width: 95px;">Nearest city</th><td class="" style="">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{nearest_city|}}} |{{{nearest_city}}}<span class="note" style="display: none">Nearest city: {{{nearest_city}}}</span>}}</td></tr>}} }} }}<!--
Row 3
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Coordinates|{{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><th style="width: 95px;">Coordinates</th><td class="" style="">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}}| {{#if:{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{lat_d|{{{lat_degrees|}}}}}}{{{long_d|{{{long_degrees|}}}}}} |
{{Infobox coord
| lat_d = {{{lat_d|{{{lat_degrees|}}}}}}
| lat_m = {{{lat_m|{{{lat_minutes|}}}}}}
| lat_s = {{{lat_s|{{{lat_seconds|}}}}}}
| lat_NS = {{{lat_NS|{{{lat_direction|}}}}}}
| long_d = {{{long_d|{{{long_degrees|}}}}}}
| long_m = {{{long_m|{{{long_minutes|}}}}}}
| long_s = {{{long_s|{{{long_seconds|}}}}}}
| long_EW = {{{long_EW|{{{long_direction|}}}}}}
| type = {{#if:{{{type|}}}|{{{type}}}|landmark}}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name =
}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}
|
{{#if: {{{coords|}}} |{{{coords}}}{{#if: {{{coords_ref|}}} | {{{coords_ref}}}}}}}
}}</td></tr>}} }} }}<!--
Row 4
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Area|{{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><th style="width: 95px;">Area</th><td class="" style="">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}}| {{#if:{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area|}}}</td></tr>}} }} }}<!--
Row 5
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Established|{{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><th style="width: 95px;">Established</th><td class="" style="">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}}| {{#if:{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if: {{{established|}}} | {{{established}}} <span class="note" style="display: none">Established: {{{established}}}</span>}}</td></tr>}} }} }}<!--
Row 6
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Visitors|{{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><th style="width: 95px;">Visitors</th><td class="" style="">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}}| {{#if:{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{#if:{{{visitation_num|}}}|{{{visitation_num|}}}{{#if:{{{(visitation_year|}}}) | (in {{{visitation_year}}})}}{{#if: {{{visitation_ref|}}} | {{{visitation_ref}}}}}}}</td></tr>}} }} }}<!--
Row 7
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:Governing body|{{#if:{{{governing_body|}}}|<tr><th style="width: 95px;">Governing body</th><td class="" style="">{{{governing_body|}}}</td></tr>}}| {{#if:{{{governing_body|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{governing_body|}}}</td></tr>}} }} }}<!--
Row 8
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:World Heritage Site|{{#if:{{{world_heritage_site|}}}|<tr><th style="width: 95px;">World Heritage Site</th><td class="" style="">{{{world_heritage_site|}}}</td></tr>}}| {{#if:{{{world_heritage_site|}}}|<tr><td colspan="2" class="" style="text-align:center; ">{{{world_heritage_site|}}}</td></tr>}} }} }}<!--
Row 9
-->{{#if:|<tr><th colspan="2" style="text-align:center; "></th></tr>| {{#if:{{#if: {{{website|}}} |Website}}|{{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><th style="width: 95px;">{{#if: {{{website|}}} |Website}}</th><td class="url" style="">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}}| {{#if:{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}|<tr><td colspan="2" class="url" style="text-align:center; ">{{#if: {{{website|}}} |{{{website}}}|{{#if: {{{url|}}} |[{{{url}}} Official website]}}}}</td></tr>}} }} }}
</table><!--
-->{{if both|{{is article}}|{{{native_name|}}}{{{image|}}}{{{base_width|}}}{{{caption|}}}{{{lat_degrees|}}}{{{lat_minutes|}}}{{{lat_seconds|}}}{{{lat_direction|}}}{{{long_degrees|}}}{{{long_minutes|}}}{{{long_seconds|}}}{{{long_direction|}}} | [[Category:Protected area articles requiring maintenance]]}}<noinclude>
{{Documentation}}
<!--
PLEASE ADD DOCUMENTATION, CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
qinv3ltlcnligk6mooxgi0da0jm7ml2
667049
667048
2010-10-11T02:19:19Z
Thumperward
14624
syncing to the sandboxed code, per talk
667049
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World Conservation Union|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{{marker|Green_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{(visitation_year|}}}) | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>{{documentation}}<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS --></noinclude>
idfnfx3a740fjidduhzy3p8ehuzjvoj
667050
667049
2010-10-11T04:28:25Z
Plastikspork
14478
For some odd reason, this removes the redlinks from the convert templates in the transcluded doc page, I believe the issue must be due to the added transclusion depth ...
667050
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World Conservation Union|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{{marker|Green_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{(visitation_year|}}}) | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>{{Documentation/core}}<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS --></noinclude>
2jc20a29oq81phgwu9dnc0050zvodqo
667051
667050
2010-10-11T04:29:37Z
Plastikspork
14478
Undid revision 390004757 by [[Special:Contributions/Plastikspork|Plastikspork]] ([[User talk:Plastikspork|talk]]) Revert demonstration, will see if anyone wants to try to try to fix this.
667051
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World Conservation Union|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{{marker|Green_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{(visitation_year|}}}) | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>{{documentation}}<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS --></noinclude>
idfnfx3a740fjidduhzy3p8ehuzjvoj
667052
667051
2010-10-11T14:50:30Z
Plastikspork
14478
Hack to reduce transclusion depth until either [[template:convert]] or [[template:documentation]] can be fixed
667052
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World Conservation Union|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{{marker|Green_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{(visitation_year|}}}) | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>{{documentation/core}}{{pp-template}}<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS --></noinclude>
tqdkkhs74sr0480yttv7jq6n7jez8ze
667053
667052
2010-10-16T08:50:02Z
WOSlinker
3423
remove {{pp-template}} since covered by documentation template
667053
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World Conservation Union|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{{marker|Green_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{(visitation_year|}}}) | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>{{documentation/core}}<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS --></noinclude>
7vzkahymyrq29rix144dtgj07i7cne0
667054
667053
2010-10-16T08:50:31Z
WOSlinker
3423
Undid revision 391026523 by [[Special:Contributions/WOSlinker|WOSlinker]] ([[User talk:WOSlinker|talk]])
667054
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World Conservation Union|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{{marker|Green_pog.svg}}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{(visitation_year|}}}) | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>{{documentation/core}}{{pp-template}}<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS --></noinclude>
tqdkkhs74sr0480yttv7jq6n7jez8ze
667055
667054
2010-10-18T22:27:57Z
Nyttend
26935
Making simple change requested at talk
667055
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World Conservation Union|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| relief = {{{relief|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{ifempty|{{{marker|}}}|{{#if:{{{relief|}}}|Red pog.svg}}|Green pog.svg}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{(visitation_year|}}}) | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>
{{documentation/core}}{{pp-template}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
avwk240x7tkwjbdrkk20exxivaz9ejr
667056
667055
2010-11-08T13:59:58Z
Plastikspork
14478
Switch from Green to Black, please revert if this causes a problem. Thanks!
667056
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World Conservation Union|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| relief = {{{relief|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{ifempty|{{{marker|}}}|{{#if:{{{relief|}}}|Red pog.svg}}|Black pog.svg}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Black pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{(visitation_year|}}}) | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>
{{documentation/core}}{{pp-template}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
8usg5ku0l82lnarx4dq1y7et2oz00cc
667057
667056
2010-11-08T14:01:19Z
Plastikspork
14478
Undid revision 395543705 by [[Special:Contributions/Plastikspork|Plastikspork]] ([[User talk:Plastikspork|talk]])
667057
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World Conservation Union|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| relief = {{{relief|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{ifempty|{{{marker|}}}|{{#if:{{{relief|}}}|Red pog.svg}}|Green pog.svg}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{(visitation_year|}}}) | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>
{{documentation/core}}{{pp-template}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
avwk240x7tkwjbdrkk20exxivaz9ejr
667059
667057
2010-11-14T00:04:00Z
Plastikspork
14478
Refactored version of [[Template:Documentation]] will be updated in a second to fix transclusion depth issues ...
667059
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World Conservation Union|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| relief = {{{relief|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{ifempty|{{{marker|}}}|{{#if:{{{relief|}}}|Red pog.svg}}|Green pog.svg}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{(visitation_year|}}}) | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}}}}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
9eopbkmg57q456ulguvncsxat1tmehl
667060
667059
2011-02-07T17:29:13Z
MSGJ
14482
removing stray bracket, per request
667060
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World Conservation Union|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| relief = {{{relief|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{ifempty|{{{marker|}}}|{{#if:{{{relief|}}}|Red pog.svg}}|Green pog.svg}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if: {{{(visitation_year|}}} | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}} }}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
k1mzq8d8f1035llfj88t1kext6tg7to
667061
667060
2011-02-08T01:11:36Z
Plastikspork
14478
fix
667061
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[World Conservation Union|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[World Conservation Union|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[World Conservation Union|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[World Conservation Union|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[World Conservation Union|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[World Conservation Union|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[World Conservation Union|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[World Conservation Union|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| relief = {{{relief|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{ifempty|{{{marker|}}}|{{#if:{{{relief|}}}|Red pog.svg}}|Green pog.svg}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if: {{{visitation_year|}}} | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}} }}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
2hy953rlx2ckra9cspz8wz3a7wtoqhs
667062
667061
2011-02-15T02:22:21Z
Plastikspork
14478
Fix redirects
667062
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = line-height:normal; font-size:90%; border-spacing:2px; width:300px;
|labelstyle = padding:0.1em 0.3em;
|datastyle = padding:0.1em 0.3em;
|abovestyle =
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheaderstyle = font-size:100%; line-height:1.3em;
|subheader = {{{alt_name|}}}
|subheader2 = {{#if: {{{iucn_category|}}} | {{#switch: {{uc:{{{iucn_category|}}}}}
| IA = <div style="background-color: #E7AF97;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category II ([[National Park]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category III ([[Natural Monument]])</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div><!--
-->{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[International Union for Conservation of Nature|IUCN]] category was entered.</div>
}} }}
|image1 = {{#if: {{{photo|}}} |
[[file: {{{photo|}}} | {{least|{{{photo_width|}}}|283}}px | {{{photo_caption|}}}<!--
--> | {{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if: {{{map|}}} |
{{#ifexist: Template:Location map {{{map|XYZ}}} <!-- does a location map template exist -->
| <div class="center">{{Location map
| {{{map|}}}
| relief = {{{relief|}}}
| label = {{{label|{{{name|}}}}}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| position = {{#switch:{{lc:{{{label_position|}}}}} <!-- change default to none -->
| left = left | right = right
| top = top | bottom = bottom
| none = none | #default = none
}}
| float = none
| caption = <!-- no value assigned but it must be declared, see Location map -->
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}}.}}
| mark = {{ifempty|{{{marker|}}}|{{#if:{{{relief|}}}|Red pog.svg}}|Green pog.svg}}
| marksize = {{{marker_size|7}}}
| border = none
| width = {{least|{{{map_width|}}}|283}}
}}</div> <!-- end Location map -->
| <div class="center">{{Superimpose
| base = {{{map|}}}
| base_width = {{least|{{{map_width|}}}|283}}px
| base_caption = {{{map_caption|}}}
| base_alt = {{{map_alt|}}}
| float = {{{marker|Green_pog.svg}}}
| float_width = {{{marker_size|7}}}px
| float_alt = {{{marker_alt|}}}
| x = {{#if:{{{locator_x|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_x|}}} }}}}
| y = {{#if:{{{locator_y|}}}
| {{#expr: ({{least|{{{base_width|{{{map_width|}}}}}}|283}} / 288) * {{{locator_y|}}} }}}}
}}</div> <!-- end superimpose -->
}}
}}{{#if:{{{map_caption|}}}|{{{map_caption|}}}}}
|label1 = Location
|data1 = {{#if: {{{location|}}} | <span class="locality">{{{location|}}}</span> }}
|label2 = Nearest city
|data2 = {{#if: {{{nearest_city|}}} | {{{nearest_city|}}}<!--
--><span class="note" style="display: none">Nearest city: {{{nearest_city|}}}</span> }}
|label3 = Coordinates
|data3 = {{#if: {{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if: {{{type|}}} | {{{type|}}} | landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }}
| {{#if: {{{coords|}}}|{{{coords|}}}<!--
-->{{#if: {{{coords_ref|}}} | {{{coords_ref|}}} }} }}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Established
|data5 = {{#if: {{{established|}}} | {{{established|}}}<!--
--> <span class="note" style="display: none">Established: {{{established|}}}</span> }}
|label6 = Visitors
|data6 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if: {{{visitation_year|}}} | {{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if: {{{visitation_ref|}}} | {{{visitation_ref|}}}}} }}
|label7 = Governing body
|data7 = {{{governing_body|}}}
|label8 = World Heritage Site
|data8 = {{{world_heritage_site|}}}
|label9 = {{#if: {{{website|}}} |Website}}
|data9 = {{#if: {{{website|}}}
| {{{website|}}}
| {{#if: {{{url|}}} | [{{{url|}}} Official website] }}
}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
d451grj9y955ki5xrd1spa6xjyt67zd
667063
667062
2011-05-11T11:55:38Z
MSGJ
14482
update with changes discussed on talk page
667063
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#if:{{{photo|}}}
| [[file: {{{photo|}}}|{{least|{{{photo_width|}}}|284}}px|{{{photo_caption|}}}<!--
-->|{{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{Infobox map
| map = {{{map|}}}
| map_width = {{least|{{{map_width|}}}|284}}
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = Nearest{{nbsp}}city
|data2 = {{{nearest_city|}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{nbsp}}{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{nbsp}}{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated |}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in{{nbsp}}{{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{nbsp}}{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing{{nbsp}}body
| {{#if:{{{administrator|)))|Administrator}}}
| {{#if:{{{owner|}}}|Owner }}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{owner|}}} }}
|label9 = World{{nbsp}}Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}|[{{{url|}}} Official website]}} }}
|data11 = {{{embedded1|}}}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
4hcv7l7fqgs1pf1b2sy2kfb9k0inkgr
667064
667063
2011-06-04T16:24:37Z
Plastikspork
14478
Per edit request
667064
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#if:{{{photo|}}}
| [[file: {{{photo|}}}|{{least|{{{photo_width|}}}|284}}px|{{{photo_caption|}}}<!--
-->|{{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{Infobox map
| map = {{{map|}}}
| map_width = {{least|{{{map_width|}}}|284}}
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = Nearest{{nbsp}}city
|data2 = {{{nearest_city|}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in{{nbsp}}{{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing{{nbsp}}body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{owner|}}}|Owner }}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{owner|}}} }}
|label9 = World{{nbsp}}Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}|[{{{url|}}} Official website]}} }}
|data11 = {{{embedded1|}}}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
9uliuyszc95101r8nfo7ib4x2z5ubcu
667065
667064
2012-03-06T22:32:03Z
WOSlinker
3423
667065
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#if:{{{photo|}}}
| [[file: {{{photo|}}}|{{least|{{{photo_width|}}}|284}}px|{{{photo_caption|}}}<!--
-->|{{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{Infobox map
| map = {{{map|}}}
| map_width = {{least|{{{map_width|}}}|284}}
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = Nearest city
|data2 = {{{nearest_city|}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{owner|}}}|Owner }}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}|[{{{url|}}} Official website]}} }}
|data11 = {{{embedded1|}}}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
osk0r933vjnw81pkybi1molqzsfsgqs
667066
667065
2012-03-22T17:25:28Z
EncMstr
568
added image2 x,y parameters per [[Template talk:Infobox protected area#Propose adding optional map parameters|talk page request]]
667066
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#if:{{{photo|}}}
| [[file: {{{photo|}}}|{{least|{{{photo_width|}}}|284}}px|{{{photo_caption|}}}<!--
-->|{{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{Infobox map
| map = {{{map|}}}
| map_width = {{least|{{{map_width|}}}|284}}
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x = {{{x|}}}
| y = {{{y|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = Nearest city
|data2 = {{{nearest_city|}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{owner|}}}|Owner }}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}|[{{{url|}}} Official website]}} }}
|data11 = {{{embedded1|}}}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
pae7eizdl8pi8hvgl37k26odds1gpqv
667067
667066
2012-05-08T12:29:10Z
WOSlinker
3423
only show Infobox map if map param set
667067
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#if:{{{photo|}}}
| [[file: {{{photo|}}}|{{least|{{{photo_width|}}}|284}}px|{{{photo_caption|}}}<!--
-->|{{#if:{{{alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}}|{{Infobox map
| map = {{{map|}}}
| map_width = {{least|{{{map_width|}}}|284}}
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = Nearest city
|data2 = {{{nearest_city|}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{owner|}}}|Owner }}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}|[{{{url|}}} Official website]}} }}
|data11 = {{{embedded1|}}}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
gebg7klyders86y3zge9zbxkobf2i2u
667068
667067
2012-12-18T13:42:46Z
Nyttend
26935
Copying code from the sandbox
667068
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#if:{{{photo|}}}
| [[file: {{{photo|}}}|{{least|{{{photo_width|}}}|284}}px|{{{photo_caption|}}}<!--
-->{{#if:{{{photo_alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x|%}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = Nearest city
|data2 = {{{nearest_city|}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{owner|}}}|Owner }}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}|[{{{url|}}} Official website]}} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
kwzeegm7gcpnp94ilcfiov68fxzitxu
667069
667068
2012-12-21T06:41:46Z
Nyttend
26935
Fixing a typo
667069
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#if:{{{photo|}}}
| [[file: {{{photo|}}}|{{least|{{{photo_width|}}}|284}}px|{{{photo_caption|}}}<!--
-->{{#if:{{{photo_alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = Nearest city
|data2 = {{{nearest_city|}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{owner|}}}|Owner }}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}|[{{{url|}}} Official website]}} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
32qr111yw9xo43h4rynof68b53fgw84
667070
667069
2012-12-29T13:24:52Z
Mr. Stradivarius
14479
Add operator and nearest_town parameters per edit protected request
667070
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#if:{{{photo|}}}
| [[file: {{{photo|}}}|{{least|{{{photo_width|}}}|284}}px|{{{photo_caption|}}}<!--
-->{{#if:{{{photo_alt|}}}|{{!}}alt={{{photo_alt|}}} }} ]] }}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}|[{{{url|}}} Official website]}} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
dy0v7r2zdtg62b3camjqiholkdzukec
667071
667070
2013-03-29T14:15:26Z
WOSlinker
3423
use #invoke:InfoboxImage for images. See [[Module:InfoboxImage]] for details.
667071
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}|[{{{url|}}} Official website]}} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
iwei1x6zhbcl64bmwginri5y7c4e61q
667072
667071
2013-10-19T10:46:45Z
WOSlinker
3423
Changed protection level of Template:Infobox protected area: allow template editors to modify ([Edit=Protected template] (indefinite) [Move=Protected template] (indefinite))
667071
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}|[{{{url|}}} Official website]}} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
iwei1x6zhbcl64bmwginri5y7c4e61q
667073
667072
2014-05-17T17:38:58Z
Pigsonthewing
6277
let's expose data
667073
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
glhctbttzg25ttkwrri97swxny3gpa0
667074
667073
2014-05-17T17:43:01Z
Pigsonthewing
6277
Nominated for merging with [[Template:Infobox park]]; see [[Wikipedia:Templates for discussion/Log/2014 May 17#Template:Infobox protected area]]. ([[WP:TW|TW]])
667074
wikitext
text/x-wiki
{{Tfm/dated|page=Infobox protected area|otherpage=Infobox park|link=Wikipedia:Templates for discussion/Log/2014 May 17#Template:Infobox protected area|help=off}}
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
f4aqv5ttgw0pon134wphhebaiqk2fmv
667075
667074
2014-05-29T23:12:59Z
J Milburn
41143
IAR removal for now- this is resulting in an ugly notice at the top of today's featured article, which does not give a good first impression of Wikipedia.
667075
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
glhctbttzg25ttkwrri97swxny3gpa0
667076
667075
2014-05-30T05:34:05Z
Zzyzx11
37894
[[Sawtooth National Forest]] is now off the main page. I suggest further discussion on [[WT:TFD]] regarding the tag
667076
wikitext
text/x-wiki
{{Tfm/dated|page=Infobox protected area|otherpage=Infobox park|link=Wikipedia:Templates for discussion/Log/2014 May 17#Template:Infobox protected area|help=off}}
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
f4aqv5ttgw0pon134wphhebaiqk2fmv
667077
667076
2014-05-30T05:37:40Z
Zzyzx11
37894
[[WT:TFD#Discussion to add instructions to use "noinclude" tags for highly-visible templates]]
667077
wikitext
text/x-wiki
<noinclude>{{Tfm/dated|page=Infobox protected area|otherpage=Infobox park|link=Wikipedia:Templates for discussion/Log/2014 May 17#Template:Infobox protected area|help=off}}</noinclude>
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
dgmb01pralg18cumvm4y4kidhzi7i27
667078
667077
2014-05-30T10:43:42Z
Pigsonthewing
6277
restore
667078
wikitext
text/x-wiki
{{Tfm/dated|page=Infobox protected area|otherpage=Infobox park|link=Wikipedia:Templates for discussion/Log/2014 May 17#Template:Infobox protected area|help=off}}
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
f4aqv5ttgw0pon134wphhebaiqk2fmv
667079
667078
2014-06-09T03:03:09Z
Plastikspork
14478
Relisting
667079
wikitext
text/x-wiki
{{Tfm/dated|page=Infobox protected area|otherpage=Infobox park|link=Wikipedia:Templates for discussion/Log/2014 June 9#Template:Infobox protected area|type=sidebar}}
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
6cdd6950w680s8cht5a9wddjvgpwsw5
667080
667079
2014-06-29T22:50:48Z
Plastikspork
14478
Closed
667080
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat = {{decdeg|{{{lat_d|}}}|{{{lat_m|}}}|{{{lat_s|}}}|{{{lat_NS|}}} }}
| long = {{decdeg|{{{long_d|}}}|{{{long_m|}}}|{{{long_s|}}}|{{{long_EW|}}} }}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
glhctbttzg25ttkwrri97swxny3gpa0
667081
667080
2014-08-14T04:13:14Z
Hike395
26964
Rm unneeded decdeg conversion
667081
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat_deg = {{{lat_d|}}}
| lat_min = {{{lat_m|}}}
| lat_sec = {{{lat_s|}}}
| lat_dir = {{{lat_NS|}}}
| lon_deg = {{{long_d|}}}
| lon_min = {{{long_m|}}}
| lon_sec = {{{long_s|}}}
| lon_dir = {{{long_EW|}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|data12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
e2jhfptulzjswhj8k9vzyvx256svgnl
667082
667081
2015-05-14T20:44:16Z
Izkala
14631
Modular infoboxes should provide a |title=
667082
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat_deg = {{{lat_d|}}}
| lat_min = {{{lat_m|}}}
| lat_sec = {{{lat_s|}}}
| lat_dir = {{{lat_NS|}}}
| lon_deg = {{{long_d|}}}
| lon_min = {{{long_m|}}}
| lon_sec = {{{long_s|}}}
| lon_dir = {{{long_EW|}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|data11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
hipnjecsz0k08dkbspvicvnx0n3pmjq
667083
667082
2015-05-14T20:45:01Z
Izkala
14631
co
667083
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat_deg = {{{lat_d|}}}
| lat_min = {{{lat_m|}}}
| lat_sec = {{{lat_s|}}}
| lat_dir = {{{lat_NS|}}}
| lon_deg = {{{long_d|}}}
| lon_min = {{{long_m|}}}
| lon_sec = {{{long_s|}}}
| lon_dir = {{{long_EW|}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Designation
|data5 = {{{designation|}}}
|rowclass6 = note
|label6 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data6 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label7 = Visitors
|data7 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label8 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data8 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label9 = World Heritage Site
|data9 = {{{world_heritage_site|}}}
|label10 = {{#if:{{{website|}}}|Website}}
|data10 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header11 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header12 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
g1cxjwndzu1gh0w4vae2nw65x75ks1b
667084
667083
2016-11-07T19:07:41Z
Frietjes
14509
number
667084
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat_deg = {{{lat_d|}}}
| lat_min = {{{lat_m|}}}
| lat_sec = {{{lat_s|}}}
| lat_dir = {{{lat_NS|}}}
| lon_deg = {{{long_d|}}}
| lon_min = {{{long_m|}}}
| lon_sec = {{{long_s|}}}
| lon_dir = {{{long_EW|}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label6 = Designation
|data6 = {{{designation|}}}
|rowclass7 = note
|label7 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data7 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label9 = Visitors
|data9 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label10 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data10 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label11 = World Heritage Site
|data11 = {{{world_heritage_site|}}}
|label12 = {{#if:{{{website|}}}|Website}}
|data12 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header13 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header14 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
a1i1ukirktm08pm5mi3llgzd3am3iiz
667085
667084
2016-11-07T19:08:56Z
Frietjes
14509
adding optional |elevation= and |named_for= for use in [[Smugglers' Notch State Park]]
667085
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat_deg = {{{lat_d|}}}
| lat_min = {{{lat_m|}}}
| lat_sec = {{{lat_s|}}}
| lat_dir = {{{lat_NS|}}}
| lon_deg = {{{long_d|}}}
| lon_min = {{{long_m|}}}
| lon_sec = {{{long_s|}}}
| lon_dir = {{{long_EW|}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Elevation
|data5 = {{{elevation|}}}
|label6 = Designation
|data6 = {{{designation|}}}
|rowclass7 = note
|label7 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data7 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label8 = Named for
|data8 = {{{named_for|}}}
|label9 = Visitors
|data9 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label10 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data10 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label11 = World Heritage Site
|data11 = {{{world_heritage_site|}}}
|label12 = {{#if:{{{website|}}}|Website}}
|data12 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header13 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header14 = {{{embedded2|}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
fofwjpuufcwt5awzns67nl5rb434ued
667086
667085
2016-11-07T19:20:00Z
Frietjes
14509
Adding unknown parameter tracking through [[:Category:Pages using infobox protected area with unknown parameters]] using [[Module:check for unknown parameters]]
667086
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| lat_deg = {{{lat_d|}}}
| lat_min = {{{lat_m|}}}
| lat_sec = {{{lat_s|}}}
| lat_dir = {{{lat_NS|}}}
| lon_deg = {{{long_d|}}}
| lon_min = {{{long_m|}}}
| lon_sec = {{{long_s|}}}
| lon_dir = {{{long_EW|}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }}
| {{#if:{{{coords|}}}|{{{coords|}}}{{#if:{{{coords_ref|}}}|{{{coords_ref|}}} }} }} }}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Elevation
|data5 = {{{elevation|}}}
|label6 = Designation
|data6 = {{{designation|}}}
|rowclass7 = note
|label7 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data7 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label8 = Named for
|data8 = {{{named_for|}}}
|label9 = Visitors
|data9 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label10 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data10 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label11 = World Heritage Site
|data11 = {{{world_heritage_site|}}}
|label12 = {{#if:{{{website|}}}|Website}}
|data12 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header13 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header14 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | authorized | child | coords | coords_ref | created | designated | designation | display | elevation | embedded | embedded1 | embedded2 | established | format | governing_body | iucn_category | label | label_position | lat_d | lat_m | lat_NS | lat_s | location | locator_x | locator_y | long_d | long_EW | long_m | long_s | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | region | relief | scale | source | type | url | visitation_num | visitation_ref | visitation_year | website | world_heritage_site | x | x% | y | y% }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
oowl263k3awrxj2rsrgx72krrl58pd6
667087
667086
2016-11-17T20:32:50Z
JJMC89
6760
converting coordinates/map to use {{Coord}} with tracking, see [[Help:Coordinates in infoboxes]]
667087
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| coordinates = {{{coordinates|{{{coords|}}}}}}
| lat_deg = {{{lat_d|}}}
| lat_min = {{{lat_m|}}}
| lat_sec = {{{lat_s|}}}
| lat_dir = {{{lat_NS|}}}
| lon_deg = {{{long_d|}}}
| lon_min = {{{long_m|}}}
| lon_sec = {{{long_s|}}}
| lon_dir = {{{long_EW|}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark}}{{{coords_ref|}}}|{{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{{coords_ref|}}}[[Category:Pages using deprecated coordinates format]]}}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Elevation
|data5 = {{{elevation|}}}
|label6 = Designation
|data6 = {{{designation|}}}
|rowclass7 = note
|label7 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data7 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label8 = Named for
|data8 = {{{named_for|}}}
|label9 = Visitors
|data9 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label10 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data10 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label11 = World Heritage Site
|data11 = {{{world_heritage_site|}}}
|label12 = {{#if:{{{website|}}}|Website}}
|data12 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header13 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header14 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | display | elevation | embedded | embedded1 | embedded2 | established | format | governing_body | iucn_category | label | label_position | lat_d | lat_m | lat_NS | lat_s | location | locator_x | locator_y | long_d | long_EW | long_m | long_s | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | region | relief | scale | source | type | url | visitation_num | visitation_ref | visitation_year | website | world_heritage_site | x | x% | y | y% }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
7085l5cic7wefvnxlk6bz53zwr4ddtf
667088
667087
2016-11-20T01:14:55Z
Jonesey95
14480
modify coord categorization
667088
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| coordinates = {{{coordinates|{{{coords|}}}}}}
| lat_deg = {{{lat_d|}}}
| lat_min = {{{lat_m|}}}
| lat_sec = {{{lat_s|}}}
| lat_dir = {{{lat_NS|}}}
| lon_deg = {{{long_d|}}}
| lon_min = {{{long_m|}}}
| lon_sec = {{{long_s|}}}
| lon_dir = {{{long_EW|}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark}}{{{coords_ref|}}}|{{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{{coords_ref|}}}[[Category:Pages using deprecated coordinates format|protected area{{PAGENAME}}]]}}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Elevation
|data5 = {{{elevation|}}}
|label6 = Designation
|data6 = {{{designation|}}}
|rowclass7 = note
|label7 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data7 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label8 = Named for
|data8 = {{{named_for|}}}
|label9 = Visitors
|data9 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label10 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data10 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label11 = World Heritage Site
|data11 = {{{world_heritage_site|}}}
|label12 = {{#if:{{{website|}}}|Website}}
|data12 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header13 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header14 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | display | elevation | embedded | embedded1 | embedded2 | established | format | governing_body | iucn_category | label | label_position | lat_d | lat_m | lat_NS | lat_s | location | locator_x | locator_y | long_d | long_EW | long_m | long_s | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | region | relief | scale | source | type | url | visitation_num | visitation_ref | visitation_year | website | world_heritage_site | x | x% | y | y% }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
7zx85up1xwv8okoqq1tkudl06e51st2
667089
667088
2016-11-21T13:59:04Z
Jc86035
5425
sorting (tracking category)
667089
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| coordinates = {{{coordinates|{{{coords|}}}}}}
| lat_deg = {{{lat_d|}}}
| lat_min = {{{lat_m|}}}
| lat_sec = {{{lat_s|}}}
| lat_dir = {{{lat_NS|}}}
| lon_deg = {{{long_d|}}}
| lon_min = {{{long_m|}}}
| lon_sec = {{{long_s|}}}
| lon_dir = {{{long_EW|}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark}}{{{coords_ref|}}}|{{#if:{{{lat_d|}}}{{{long_d|}}}
| {{Infobox coord
| lat_d = {{{lat_d|}}}
| lat_m = {{{lat_m|}}}
| lat_s = {{{lat_s|}}}
| lat_NS = {{{lat_NS|}}}
| long_d = {{{long_d|}}}
| long_m = {{{long_m|}}}
| long_s = {{{long_s|}}}
| long_EW = {{{long_EW|}}}
| type = {{#if:{{{type|}}}|{{{type|}}}|landmark }}
| region = {{{region|}}}
| scale = {{{scale|}}}
| source = {{{source|}}}
| display = {{{display|}}}
| format = {{{format|}}}
| name = <!-- leave undefined -->
}}{{{coords_ref|}}}[[Category:Pages using deprecated coordinates format|protected area]]}}
}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Elevation
|data5 = {{{elevation|}}}
|label6 = Designation
|data6 = {{{designation|}}}
|rowclass7 = note
|label7 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data7 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label8 = Named for
|data8 = {{{named_for|}}}
|label9 = Visitors
|data9 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label10 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data10 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label11 = World Heritage Site
|data11 = {{{world_heritage_site|}}}
|label12 = {{#if:{{{website|}}}|Website}}
|data12 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header13 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header14 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | display | elevation | embedded | embedded1 | embedded2 | established | format | governing_body | iucn_category | label | label_position | lat_d | lat_m | lat_NS | lat_s | location | locator_x | locator_y | long_d | long_EW | long_m | long_s | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | region | relief | scale | source | type | url | visitation_num | visitation_ref | visitation_year | website | world_heritage_site | x | x% | y | y% }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
s4g01oajegpj469foz2o2yomz8zqxdl
667090
667089
2016-11-24T08:33:47Z
Jonesey95
14480
Rm deprecated parameters. See [[Wikipedia:Coordinates in infoboxes]].
667090
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| coordinates = {{{coordinates|{{{coords|}}}}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark}}{{{coords_ref|}}}|}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Elevation
|data5 = {{{elevation|}}}
|label6 = Designation
|data6 = {{{designation|}}}
|rowclass7 = note
|label7 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data7 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label8 = Named for
|data8 = {{{named_for|}}}
|label9 = Visitors
|data9 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label10 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data10 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label11 = World Heritage Site
|data11 = {{{world_heritage_site|}}}
|label12 = {{#if:{{{website|}}}|Website}}
|data12 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header13 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header14 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | elevation | embedded | embedded1 | embedded2 | established | governing_body | iucn_category | label | label_position | location | locator_x | locator_y | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | world_heritage_site | x | x% | y | y% }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
28dp5se6ye0dsrt09hru0f5l5kvy5l4
667091
667090
2016-12-23T16:38:40Z
Frietjes
14509
adding optional dimensions = for [[Ala Kahakai National Historic Trail]] and [[Chevé Cave]] and others
667091
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| coordinates = {{{coordinates|{{{coords|}}}}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark}}{{{coords_ref|}}}|}}
|label4 = Area
|data4 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label5 = Elevation
|data5 = {{{elevation|}}}
|label6 = Dimensions
|data6 = {{{dimensions|}}}
|label7 = Designation
|data7 = {{{designation|}}}
|rowclass8 = note
|label8 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data8 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label9 = Named for
|data9 = {{{named_for|}}}
|label10 = Visitors
|data10 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label11 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data11 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label12 = World Heritage Site
|data12 = {{{world_heritage_site|}}}
|label13 = {{#if:{{{website|}}}|Website}}
|data13 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header14 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header15 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | embedded | embedded1 | embedded2 | established | governing_body | iucn_category | label | label_position | location | locator_x | locator_y | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | world_heritage_site | x | x% | y | y% }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
9p5bzn6hs8uhq6ngb4u24m86s8lw5mm
667092
667091
2016-12-23T17:56:33Z
Hike395
26964
add length/width parameters, use infobox dim to compute optimal map zoom
667092
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| coordinates = {{{coordinates|{{{coords|}}}}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label7 = Elevation
|data7 = {{{elevation|}}}
|label8 = Dimensions
|data8 = {{{dimensions|}}}
|label9 = Designation
|data9 = {{{designation|}}}
|rowclass10 = note
|label10 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data10 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label11 = Named for
|data11 = {{{named_for|}}}
|label12 = Visitors
|data12 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label13 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data13 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label14 = World Heritage Site
|data14 = {{{world_heritage_site|}}}
|label15 = {{#if:{{{website|}}}|Website}}
|data15 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header16 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header17 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | embedded | embedded1 | embedded2 | established | governing_body | iucn_category | label | label_position | location | locator_x | locator_y | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | world_heritage_site | x | x% | y | y% }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
hzvdcpun3umxoih7dwk03hb0hwgd187
667093
667092
2016-12-23T17:58:32Z
Hike395
26964
add length/width parameters to parameter check
667093
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| coordinates = {{{coordinates|{{{coords|}}}}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}
|label7 = Elevation
|data7 = {{{elevation|}}}
|label8 = Dimensions
|data8 = {{{dimensions|}}}
|label9 = Designation
|data9 = {{{designation|}}}
|rowclass10 = note
|label10 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data10 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label11 = Named for
|data11 = {{{named_for|}}}
|label12 = Visitors
|data12 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label13 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data13 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label14 = World Heritage Site
|data14 = {{{world_heritage_site|}}}
|label15 = {{#if:{{{website|}}}|Website}}
|data15 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header16 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header17 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | embedded | embedded1 | embedded2 | established | governing_body | iucn_category | label | label_position | length | length_km | length_mi | location | locator_x | locator_y | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | x | x% | y | y% }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
tomohi35o6dpwd79hp738fe45gd033j
667095
667093
2016-12-23T18:24:36Z
Hike395
26964
add area_ref parameter
667095
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| coordinates = {{{coordinates|{{{coords|}}}}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}{{{area_ref|}}}
|label7 = Elevation
|data7 = {{{elevation|}}}
|label8 = Dimensions
|data8 = {{{dimensions|}}}
|label9 = Designation
|data9 = {{{designation|}}}
|rowclass10 = note
|label10 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data10 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label11 = Named for
|data11 = {{{named_for|}}}
|label12 = Visitors
|data12 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label13 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data13 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label14 = World Heritage Site
|data14 = {{{world_heritage_site|}}}
|label15 = {{#if:{{{website|}}}|Website}}
|data15 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header16 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header17 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | embedded | embedded1 | embedded2 | established | governing_body | iucn_category | label | label_position | length | length_km | length_mi | location | locator_x | locator_y | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | x | x% | y | y% }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
p4ae3svdl0l5se06w2ilr8gouk9l907
667096
667095
2016-12-23T18:27:57Z
Hike395
26964
add area_ref parameter to checking
667096
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| coordinates = {{{coordinates|{{{coords|}}}}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}<!--
-->{{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}<!--
-->{{{area|}}}{{{area_ref|}}}
|label7 = Elevation
|data7 = {{{elevation|}}}
|label8 = Dimensions
|data8 = {{{dimensions|}}}
|label9 = Designation
|data9 = {{{designation|}}}
|rowclass10 = note
|label10 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data10 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label11 = Named for
|data11 = {{{named_for|}}}
|label12 = Visitors
|data12 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label13 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data13 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label14 = World Heritage Site
|data14 = {{{world_heritage_site|}}}
|label15 = {{#if:{{{website|}}}|Website}}
|data15 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header16 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header17 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | area_ref | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | embedded | embedded1 | embedded2 | established | governing_body | iucn_category | label | label_position | length | length_km | length_mi | location | locator_x | locator_y | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | x | x% | y | y% }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
fpfajy68nhc8iczfdjfpfzrf1rs7qkg
667097
667096
2016-12-25T20:10:54Z
Hike395
26964
change default area conversion: large areas get converted to km2 or sqmi
667097
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| coordinates = {{{coordinates|{{{coords|}}}}}}
| pixel_x = {{#if:{{{locator_x|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_x|}}} }}}}
| pixel_y = {{#if:{{{locator_y|}}}|{{#expr:({{least|{{{map_width|}}}|284}}/288)*{{{locator_y|}}} }}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = Elevation
|data7 = {{{elevation|}}}
|label8 = Dimensions
|data8 = {{{dimensions|}}}
|label9 = Designation
|data9 = {{{designation|}}}
|rowclass10 = note
|label10 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data10 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label11 = Named for
|data11 = {{{named_for|}}}
|label12 = Visitors
|data12 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label13 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data13 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label14 = World Heritage Site
|data14 = {{{world_heritage_site|}}}
|label15 = {{#if:{{{website|}}}|Website}}
|data15 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header16 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header17 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | area_ref | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | embedded | embedded1 | embedded2 | established | governing_body | iucn_category | label | label_position | length | length_km | length_mi | location | locator_x | locator_y | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | x | x% | y | y% }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
0ag4hksvnbtp9gvc8bbyfbj8m76eyaz
667098
667097
2017-02-21T06:11:57Z
Hike395
26964
rm locator_x and locator_y: undocumented, deprecated, now unused in main space
667098
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{#if:{{{map_width|}}}|{{least|{{{map_width|}}}|284}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{ifempty|{{{marker_size|}}}|8}}
| coordinates = {{{coordinates|{{{coords|}}}}}}
| x% = {{{x%|}}}
| y% = {{{y%|}}}
| x = {{{x|}}}
| y = {{{y|}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = Elevation
|data7 = {{{elevation|}}}
|label8 = Dimensions
|data8 = {{{dimensions|}}}
|label9 = Designation
|data9 = {{{designation|}}}
|rowclass10 = note
|label10 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data10 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label11 = Named for
|data11 = {{{named_for|}}}
|label12 = Visitors
|data12 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label13 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data13 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label14 = World Heritage Site
|data14 = {{{world_heritage_site|}}}
|label15 = {{#if:{{{website|}}}|Website}}
|data15 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header16 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header17 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | area_ref | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | embedded | embedded1 | embedded2 | established | governing_body | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | x | x% | y | y% }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
5bkbhdzz6vxcgahdlviw4gows3w6klo
667099
667098
2017-03-12T13:07:52Z
Hike395
26964
rm x,y positioning
667099
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{{map_width|}}}
| max_width = 284
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = Elevation
|data7 = {{{elevation|}}}
|label8 = Dimensions
|data8 = {{{dimensions|}}}
|label9 = Designation
|data9 = {{{designation|}}}
|rowclass10 = note
|label10 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data10 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label11 = Named for
|data11 = {{{named_for|}}}
|label12 = Visitors
|data12 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label13 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data13 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label14 = World Heritage Site
|data14 = {{{world_heritage_site|}}}
|label15 = {{#if:{{{website|}}}|Website}}
|data15 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header16 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header17 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | area_ref | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | embedded | embedded1 | embedded2 | established | governing_body | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
9eavpqke8xbyj3wwrzngo4w9wmku3nl
667101
667099
2017-03-13T15:19:30Z
Frietjes
14509
temporary additional tracking
667101
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{{map_width|}}}
| max_width = 284
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = Elevation
|data7 = {{{elevation|}}}
|label8 = Dimensions
|data8 = {{{dimensions|}}}
|label9 = Designation
|data9 = {{{designation|}}}
|rowclass10 = note
|label10 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data10 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label11 = Named for
|data11 = {{{named_for|}}}
|label12 = Visitors
|data12 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label13 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data13 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label14 = World Heritage Site
|data14 = {{{world_heritage_site|}}}
|label15 = {{#if:{{{website|}}}|Website}}
|data15 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header16 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header17 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | area_ref | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | embedded | embedded1 | embedded2 | established | governing_body | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}{{#ifeq:{{{x|¶}}}{{{y|¶}}}{{{x%|¶}}}{{{y%|¶}}}|¶¶¶¶||[[Category:Pages using Template:Infobox map needing attention]]
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
09and3s9i2cavzdpx8hrs4by0duzqrq
667103
667101
2017-05-21T14:34:57Z
Frietjes
14509
per request on the talk page
667103
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{{map_width|}}}
| max_width = 284
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | area_ref | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_min | elevation_max | embedded | embedded1 | embedded2 | established | governing_body | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}{{#ifeq:{{{x|¶}}}{{{y|¶}}}{{{x%|¶}}}{{{y%|¶}}}|¶¶¶¶||[[Category:Pages using Template:Infobox map needing attention]]
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
k54l5lo14fzq1cf3zweis3ywq8zodbv
667105
667103
2017-06-15T14:08:29Z
Frietjes
14509
add alt map syntax (same as infobox settlement)
667105
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{{map_width|}}}
| max_width = 284
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{image_map|}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_sqmi | area_ref | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_min | elevation_max | embedded | embedded1 | embedded2 | established | governing_body | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_width | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}{{#if:{{{map|}}}|{{#ifexist:Module:Location map/data/{{#invoke:string|replace|{{{map|}}}|#.*||plain=false}}||{{#ifexist:Template:Location map {{#invoke:string|replace|{{{map|}}}|#.*||plain=false}}||[[Category:Pages using infobox protected area with unknown parameters|Σ{{PAGENAME}}]]}}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
c2773y58zuta294g2z87oq3k12i1jxk
667107
667105
2017-06-15T14:12:31Z
Frietjes
14509
regenerate tracking
667107
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{{map_width|}}}
| max_width = 284
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}} | {{{url|}}} }} }}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}{{#if:{{{map|}}}|{{#ifexist:Module:Location map/data/{{#invoke:string|replace|{{{map|}}}|#.*||plain=false}}||{{#ifexist:Template:Location map {{#invoke:string|replace|{{{map|}}}|#.*||plain=false}}||[[Category:Pages using infobox protected area with unknown parameters|Σ{{PAGENAME}}]]}}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
t3mos1btwprh7t548kc0nod7j0buwe0
667109
667107
2017-06-16T13:37:11Z
Frietjes
14509
auto url wrapping
667109
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{Infobox map
| map = {{{map|}}}
| map_width = {{{map_width|}}}
| max_width = 284
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| label_position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| map_caption = {{{map_caption|}}}
| map_alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{ifempty|{{{mark|}}}|{{#ifeq:{{lc:{{{map|}}}}}|us locator blank.svg|Green pog.svg|Red pog.svg }}}}
| mark_width = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}{{#if:{{{map|}}}|{{#ifexist:Module:Location map/data/{{#invoke:string|replace|{{{map|}}}|#.*||plain=false}}||{{#ifexist:Template:Location map {{#invoke:string|replace|{{{map|}}}|#.*||plain=false}}||[[Category:Pages using infobox protected area with unknown parameters|Σ{{PAGENAME}}]]}}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
3e1f5o1w61hx6w06ctakq4d3iqlilna
667111
667109
2017-06-17T13:23:05Z
Frietjes
14509
tracking empty, update map syntax
667111
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}{{#if:{{{map|}}}|{{#ifexist:Module:Location map/data/{{#invoke:string|replace|{{{map|}}}|#.*||plain=false}}||{{#ifexist:Template:Location map {{#invoke:string|replace|{{{map|}}}|#.*||plain=false}}||[[Category:Pages using infobox protected area with unknown parameters|Σ{{PAGENAME}}]]}}}}
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
adludpf3y8wu6xt0boayr9a518xms7b
667112
667111
2017-06-17T13:31:44Z
Frietjes
14509
667112
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
q3atlaqe9510ra5gr2k97lujze3o8mx
667113
667112
2017-06-17T13:48:45Z
Frietjes
14509
667113
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{min |{{{map_size|{{{mapsize|{{{map_width|}}}}}}}}} | 300 }}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
1lbea1hgrayz04xp4vhyqkf8ermsdvx
667115
667113
2017-06-17T13:51:12Z
Frietjes
14509
667115
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|bodystyle = font-size: 90%; border-spacing: 3px; width: 300px;
|subheaderstyle = font-size: 100%;
|labelstyle = padding: 0em 0em 0em 0.3em;
|datastyle = padding: 0em 0.3em;
|child = {{{child|}}}
|abovestyle = padding: 0em 0.1em;
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{min |{{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}|284}} | 300 }}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
3zryi4ypcrw9skt8e9ef5m0e9kg99hf
667118
667115
2017-07-03T20:48:49Z
Frietjes
14509
fix non-standard padding, looks very strange when embedded in another infobox without this non-standard padding
667118
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{min |{{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}|284}} | 300 }}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
910317of9kp02xpk7wtxadkwhdbbk6w
667120
667118
2017-12-03T03:37:07Z
Hike395
26964
use default width parameter (per Talk request), to avoid long maps of Chile being ridiculously large
667120
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
i6xfdamd4hepe3tgzrgvnulm5bzg5za
667122
667120
2017-12-03T07:17:40Z
Hike395
26964
location map now has max width checking
667122
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
9o6zsvrcdrh3n81ea66zxa3epat9t06
667123
667122
2017-12-04T01:15:08Z
Hike395
26964
set image default widths to be same as map default width
667123
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=284px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
jw1vb4g4eqx3i1772lfnrniyus392kc
667125
667123
2017-12-04T06:01:58Z
Hike395
26964
correct max size of custom map
667125
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage Site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
3xvl6bv1dqev987cve3e4suyi8hy1dd
667127
667125
2018-10-16T07:33:15Z
MSGJ
14482
Site -> site, per request
667127
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
akrfylmd1ro0i6cpt1fnchkvmjlfebr
667128
667127
2018-11-11T09:50:31Z
Zackmann08
14653
discussion
667128
wikitext
text/x-wiki
{{Template for discussion/dated|action=|page=Geobox|link=Wikipedia:Templates for discussion/Log/2018 November 11#Template:Geobox|type=sidebar|help=off|bigbox={{#invoke:Noinclude|noinclude|text=yes}}}}
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}} }}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
pgs7xknhl72ken5m1qiomea8iore36n
667129
667128
2018-11-12T00:41:20Z
Zackmann08
14653
adding support for IUCN reference
667129
wikitext
text/x-wiki
{{Template for discussion/dated|action=|page=Geobox|link=Wikipedia:Templates for discussion/Log/2018 November 11#Template:Geobox|type=sidebar|help=off|bigbox={{#invoke:Noinclude|noinclude|text=yes}}}}
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
ow2zej4awb7hb81rg383h3odqj4zoq9
667130
667129
2018-11-28T19:12:16Z
UninvitedCompany
49313
Removing transclusion of the Geobox deletion discussion as the message is showing up everywhere now that the discussion is closed
667130
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| relief = {{{relief|}}}
| label = {{ifempty|{{{label|}}}|{{{name|}}} }}
| position = {{ifempty|{{{label_position|}}}|none}} <!-- change default to none -->
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
l7w0x588bug17nwnppjezi9hxrhtoh6
667132
667130
2019-05-22T05:48:49Z
Hike395
26964
fix missing label issue
667132
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{ifempty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{ifempty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{ifempty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{ifempty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{ifempty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
qaifcn6ve9wlw667sjzq88ffz5xiafv
667134
667132
2019-10-10T21:37:59Z
Frietjes
14509
667134
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{if empty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
nrz242dvhdklmu8qbdhuiuy7cw4yngl
667135
667134
2020-06-26T20:33:32Z
JHunterJ
37923
allow AlternativeMap to be used in location map
667135
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = Named for
|data13 = {{{named_for|}}}
|label14 = Visitors
|data14 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label15 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data15 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label16 = World Heritage site
|data16 = {{{world_heritage_site|}}}
|label17 = {{#if:{{{website|}}}|Website}}
|data17 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header18 = {{if empty|{{{embedded1|}}}|{{{embedded|}}} }}
|header19 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
2cb2wxk0yatyxhv4riyphjwlfmvqbvj
667136
667135
2022-08-13T02:52:07Z
Paine Ellsworth
4319
per edit request on talk page - include "disestablished" parameter to prevent "established" parameter hacks
667136
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
|image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
|caption1 = {{{photo_caption|}}}
|image2 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption2 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
5aqwcbdhb3h4gxn6x8ksb4kphqct4z0
667137
667136
2024-02-25T02:57:18Z
SWinxy
27031
Add logo parameters (per edit req)
667137
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
| caption2 = {{{photo_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | logo | logo_upright | logo_alt | logo_caption | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
f0i83qzqlyfumk33gi75wn9231kgg48
667138
667137
2024-03-12T18:27:19Z
Jonesey95
14480
add standard module parameter for embedding
667138
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
| caption2 = {{{photo_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | logo | logo_upright | logo_alt | logo_caption | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
jqe5reunmlrr3cb4s87ev6puzjr7zzk
667139
667138
2024-11-04T10:56:16Z
Joy
14543
add mapframe support, on by default only if no other maps present ([[Wikipedia:Mapframe maps in infoboxes]])
667139
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
| caption2 = {{{photo_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
|auto
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}|no|yes}}
}}
| caption4 = {{#invoke:Infobox mapframe|autocaption}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | logo | logo_upright | logo_alt | logo_caption | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | mapframe | mapframe-area_km2 | mapframe-area_mi2 | mapframe-caption | mapframe-coord | mapframe-coordinates | mapframe-custom | mapframe-frame-coord | mapframe-frame-coordinates | mapframe-frame-height | mapframe-frame-width | mapframe-geomask | mapframe-geomask-fill | mapframe-geomask-fill-opacity | mapframe-geomask-stroke-color | mapframe-geomask-stroke-colour | mapframe-geomask-stroke-width | mapframe-height | mapframe-id | mapframe-length_km | mapframe-length_mi | mapframe-marker | mapframe-marker-color | mapframe-marker-colour | mapframe-point | mapframe-shape | mapframe-shape-fill | mapframe-shape-fill-opacity | mapframe-stroke-color | mapframe-stroke-colour | mapframe-stroke-width | mapframe-switcher | mapframe-width | mapframe-wikidata | mapframe-zoom
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
15z3sylbc9eqxf1z8xalz4av0mlxon1
667142
667139
2024-11-04T11:08:12Z
Joy
14543
set natural as the default mapframe icon marker, as that seems to be the most common use case here
667142
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
| caption2 = {{{photo_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
|auto
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}|no|yes}}
|mapframe-marker = {{{mapframe-marker|natural}}}
}}
| caption4 = {{#invoke:Infobox mapframe|autocaption}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:landmark|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | logo | logo_upright | logo_alt | logo_caption | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | mapframe | mapframe-area_km2 | mapframe-area_mi2 | mapframe-caption | mapframe-coord | mapframe-coordinates | mapframe-custom | mapframe-frame-coord | mapframe-frame-coordinates | mapframe-frame-height | mapframe-frame-width | mapframe-geomask | mapframe-geomask-fill | mapframe-geomask-fill-opacity | mapframe-geomask-stroke-color | mapframe-geomask-stroke-colour | mapframe-geomask-stroke-width | mapframe-height | mapframe-id | mapframe-length_km | mapframe-length_mi | mapframe-marker | mapframe-marker-color | mapframe-marker-colour | mapframe-point | mapframe-shape | mapframe-shape-fill | mapframe-shape-fill-opacity | mapframe-stroke-color | mapframe-stroke-colour | mapframe-stroke-width | mapframe-switcher | mapframe-width | mapframe-wikidata | mapframe-zoom
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
hlnhkssf6w7z1r4wxhdbqup589dgio1
667144
667142
2024-11-04T11:20:14Z
Joy
14543
set mapframe-zoom using {{map zoom}}, but the geohack type here is unclear, could be a number of them from https://www.mediawiki.org/wiki/GeoHack - so allow a new parameter to set it, while using 'landmark' as a vaguely safe default, as we did with coordinates
667144
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
| caption2 = {{{photo_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
|auto
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}|no|yes}}
|mapframe-marker = {{{mapframe-marker|natural}}}
|mapframe-zoom = {{Map zoom
|type={{{geohack-type|landmark}}}|<!--
-->area_mi2={{{area_sqmi|}}}|area_km2={{{area_km2|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}}|<!--
-->length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->}}
}}
| caption4 = {{#invoke:Infobox mapframe|autocaption}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | logo | logo_upright | logo_alt | logo_caption | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | mapframe | mapframe-area_km2 | mapframe-area_mi2 | mapframe-caption | mapframe-coord | mapframe-coordinates | mapframe-custom | mapframe-frame-coord | mapframe-frame-coordinates | mapframe-frame-height | mapframe-frame-width | mapframe-geomask | mapframe-geomask-fill | mapframe-geomask-fill-opacity | mapframe-geomask-stroke-color | mapframe-geomask-stroke-colour | mapframe-geomask-stroke-width | mapframe-height | mapframe-id | mapframe-length_km | mapframe-length_mi | mapframe-marker | mapframe-marker-color | mapframe-marker-colour | mapframe-point | mapframe-shape | mapframe-shape-fill | mapframe-shape-fill-opacity | mapframe-stroke-color | mapframe-stroke-colour | mapframe-stroke-width | mapframe-switcher | mapframe-width | mapframe-wikidata | mapframe-zoom | geohack-type
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
tmoga4r1ax7cx5wrsv3c7l034047krq
667145
667144
2024-11-08T04:20:07Z
Hike395
26964
use infobox mapframe parameters directly
667145
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
| caption2 = {{{photo_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
|auto
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}|no|yes}}
|mapframe-marker = {{{mapframe-marker|natural}}}
|mapframe-type = {{{geohack-type|landmark}}}
|mapframe-area_mi2={{{area_sqmi|}}}|mapframe-area_km2={{{area_km2|}}}
|mapframe-area_ha={{{area_ha|}}}|mapframe-area_acre={{{area_acre|}}}
|mapframe-length_km={{{length_km|}}}|mapframe-length_mi={{{length_mi|}}}
|mapframe-width_km={{{width_km|}}}|width_mi={{{width_mi|}}}
}}
| caption4 = {{#invoke:Infobox mapframe|autocaption}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | logo | logo_upright | logo_alt | logo_caption | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | mapframe | mapframe-area_km2 | mapframe-area_mi2 | mapframe-caption | mapframe-coord | mapframe-coordinates | mapframe-custom | mapframe-frame-coord | mapframe-frame-coordinates | mapframe-frame-height | mapframe-frame-width | mapframe-geomask | mapframe-geomask-fill | mapframe-geomask-fill-opacity | mapframe-geomask-stroke-color | mapframe-geomask-stroke-colour | mapframe-geomask-stroke-width | mapframe-height | mapframe-id | mapframe-length_km | mapframe-length_mi | mapframe-marker | mapframe-marker-color | mapframe-marker-colour | mapframe-point | mapframe-shape | mapframe-shape-fill | mapframe-shape-fill-opacity | mapframe-stroke-color | mapframe-stroke-colour | mapframe-stroke-width | mapframe-switcher | mapframe-width | mapframe-wikidata | mapframe-zoom | geohack-type
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
9nx8arupykbtiuy1rnvb6n0cm0x6ds8
667146
667145
2025-03-23T22:04:28Z
Joy
14543
set mapframe colors to green
667146
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
| caption2 = {{{photo_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
|auto
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}|no|yes}}
|mapframe-marker = {{{mapframe-marker|natural}}}
|mapframe-type = {{{geohack-type|landmark}}}
|mapframe-area_mi2={{{area_sqmi|}}}|mapframe-area_km2={{{area_km2|}}}
|mapframe-area_ha={{{area_ha|}}}|mapframe-area_acre={{{area_acre|}}}
|mapframe-length_km={{{length_km|}}}|mapframe-length_mi={{{length_mi|}}}
|mapframe-width_km={{{width_km|}}}|width_mi={{{width_mi|}}}
|mapframe-stroke-color = {{{mapframe-stroke-color|#008000}}}
|mapframe-shape-fill = {{{mapframe-shape-fill|#5CE65C}}}
}}
| caption4 = {{#invoke:Infobox mapframe|autocaption}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | logo | logo_upright | logo_alt | logo_caption | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | mapframe | mapframe-area_km2 | mapframe-area_mi2 | mapframe-caption | mapframe-coord | mapframe-coordinates | mapframe-custom | mapframe-frame-coord | mapframe-frame-coordinates | mapframe-frame-height | mapframe-frame-width | mapframe-geomask | mapframe-geomask-fill | mapframe-geomask-fill-opacity | mapframe-geomask-stroke-color | mapframe-geomask-stroke-colour | mapframe-geomask-stroke-width | mapframe-height | mapframe-id | mapframe-length_km | mapframe-length_mi | mapframe-marker | mapframe-marker-color | mapframe-marker-colour | mapframe-point | mapframe-shape | mapframe-shape-fill | mapframe-shape-fill-opacity | mapframe-stroke-color | mapframe-stroke-colour | mapframe-stroke-width | mapframe-switcher | mapframe-width | mapframe-wikidata | mapframe-zoom | geohack-type
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
44ddk9bwszpti6lhgc7s9diyz6nzl2e
667147
667146
2025-03-23T22:13:15Z
Joy
14543
marker color can also be green
667147
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
| caption2 = {{{photo_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
|auto
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}|no|yes}}
|mapframe-marker = {{{mapframe-marker|natural}}}
|mapframe-type = {{{geohack-type|landmark}}}
|mapframe-area_mi2={{{area_sqmi|}}}|mapframe-area_km2={{{area_km2|}}}
|mapframe-area_ha={{{area_ha|}}}|mapframe-area_acre={{{area_acre|}}}
|mapframe-length_km={{{length_km|}}}|mapframe-length_mi={{{length_mi|}}}
|mapframe-width_km={{{width_km|}}}|width_mi={{{width_mi|}}}
|mapframe-stroke-color = {{{mapframe-stroke-color|#008000}}}
|mapframe-shape-fill = {{{mapframe-shape-fill|#5CE65C}}}
|mapframe-marker-color = {{{mapframe-marker-color|#62AB22}}}
}}
| caption4 = {{#invoke:Infobox mapframe|autocaption}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | logo | logo_upright | logo_alt | logo_caption | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | mapframe | mapframe-area_km2 | mapframe-area_mi2 | mapframe-caption | mapframe-coord | mapframe-coordinates | mapframe-custom | mapframe-frame-coord | mapframe-frame-coordinates | mapframe-frame-height | mapframe-frame-width | mapframe-geomask | mapframe-geomask-fill | mapframe-geomask-fill-opacity | mapframe-geomask-stroke-color | mapframe-geomask-stroke-colour | mapframe-geomask-stroke-width | mapframe-height | mapframe-id | mapframe-length_km | mapframe-length_mi | mapframe-marker | mapframe-marker-color | mapframe-marker-colour | mapframe-point | mapframe-shape | mapframe-shape-fill | mapframe-shape-fill-opacity | mapframe-stroke-color | mapframe-stroke-colour | mapframe-stroke-width | mapframe-switcher | mapframe-width | mapframe-wikidata | mapframe-zoom | geohack-type
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
7ntal1euwbyi0ho0gdwhkt9m4d8hq22
667149
667147
2025-09-01T14:01:56Z
Hike395
26964
handle default mapframe params correctly, use default size that matches location map, turn off mapframe on embedding, correct display of autocaption
667149
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
| caption2 = {{{photo_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
|auto
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
|mapframe-marker = natural
|mapframe-type = {{{geohack-type|landmark}}}
|mapframe-area_mi2={{{area_sqmi|}}}|mapframe-area_km2={{{area_km2|}}}
|mapframe-area_ha={{{area_ha|}}}|mapframe-area_acre={{{area_acre|}}}
|mapframe-length_km={{{length_km|}}}|mapframe-length_mi={{{length_mi|}}}
|mapframe-width_km={{{width_km|}}}|width_mi={{{width_mi|}}}
|mapframe-stroke-color = #008000
|mapframe-shape-fill = #5CE65C
|mapframe-marker-color = #62AB22
|mapframe-frame-width = 284
|mapframe-frame-height = 208
}}
| caption4 = {{#invoke:Infobox mapframe
|autocaption
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | logo | logo_upright | logo_alt | logo_caption | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | mapframe | mapframe-area_km2 | mapframe-area_mi2 | mapframe-caption | mapframe-coord | mapframe-coordinates | mapframe-custom | mapframe-frame-coord | mapframe-frame-coordinates | mapframe-frame-height | mapframe-frame-width | mapframe-geomask | mapframe-geomask-fill | mapframe-geomask-fill-opacity | mapframe-geomask-stroke-color | mapframe-geomask-stroke-colour | mapframe-geomask-stroke-width | mapframe-height | mapframe-id | mapframe-length_km | mapframe-length_mi | mapframe-marker | mapframe-marker-color | mapframe-marker-colour | mapframe-point | mapframe-shape | mapframe-shape-fill | mapframe-shape-fill-opacity | mapframe-stroke-color | mapframe-stroke-colour | mapframe-stroke-width | mapframe-switcher | mapframe-width | mapframe-wikidata | mapframe-zoom | geohack-type
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
6axhxkbfnfxs1fklxpspq7rrlikn646
667150
667149
2025-10-06T06:11:25Z
Zackmann08
14653
every other template uses {{{image}}} and {{{caption}}} they should at least be options here...
667150
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|{{{image|}}}}}}|size={{{photo_width|{{{image_size|}}}}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|{{{alt|}}}}}}}}
| caption2 = {{{photo_caption|{{{caption|}}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
|auto
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
|mapframe-marker = natural
|mapframe-type = {{{geohack-type|landmark}}}
|mapframe-area_mi2={{{area_sqmi|}}}|mapframe-area_km2={{{area_km2|}}}
|mapframe-area_ha={{{area_ha|}}}|mapframe-area_acre={{{area_acre|}}}
|mapframe-length_km={{{length_km|}}}|mapframe-length_mi={{{length_mi|}}}
|mapframe-width_km={{{width_km|}}}|width_mi={{{width_mi|}}}
|mapframe-stroke-color = #008000
|mapframe-shape-fill = #5CE65C
|mapframe-marker-color = #62AB22
|mapframe-frame-width = 284
|mapframe-frame-height = 208
}}
| caption4 = {{#invoke:Infobox mapframe
|autocaption
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | caption | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image | image_map | image_size | iucn_category | iucn_ref | logo | logo_upright | logo_alt | logo_caption | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | mapframe | mapframe-area_km2 | mapframe-area_mi2 | mapframe-caption | mapframe-coord | mapframe-coordinates | mapframe-custom | mapframe-frame-coord | mapframe-frame-coordinates | mapframe-frame-height | mapframe-frame-width | mapframe-geomask | mapframe-geomask-fill | mapframe-geomask-fill-opacity | mapframe-geomask-stroke-color | mapframe-geomask-stroke-colour | mapframe-geomask-stroke-width | mapframe-height | mapframe-id | mapframe-length_km | mapframe-length_mi | mapframe-marker | mapframe-marker-color | mapframe-marker-colour | mapframe-point | mapframe-shape | mapframe-shape-fill | mapframe-shape-fill-opacity | mapframe-stroke-color | mapframe-stroke-colour | mapframe-stroke-width | mapframe-switcher | mapframe-width | mapframe-wikidata | mapframe-zoom | geohack-type
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
lsv1rsms6wek8qd0pyado1ycerp59t9
667152
667150
2025-10-06T06:12:43Z
Zackmann08
14653
Reverted edit by [[Special:Contribs/Zackmann08|Zackmann08]] ([[User talk:Zackmann08|talk]]) to last version by Hike395
667152
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
| caption2 = {{{photo_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
|auto
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
|mapframe-marker = natural
|mapframe-type = {{{geohack-type|landmark}}}
|mapframe-area_mi2={{{area_sqmi|}}}|mapframe-area_km2={{{area_km2|}}}
|mapframe-area_ha={{{area_ha|}}}|mapframe-area_acre={{{area_acre|}}}
|mapframe-length_km={{{length_km|}}}|mapframe-length_mi={{{length_mi|}}}
|mapframe-width_km={{{width_km|}}}|width_mi={{{width_mi|}}}
|mapframe-stroke-color = #008000
|mapframe-shape-fill = #5CE65C
|mapframe-marker-color = #62AB22
|mapframe-frame-width = 284
|mapframe-frame-height = 208
}}
| caption4 = {{#invoke:Infobox mapframe
|autocaption
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | governing_body | image_map | iucn_category | iucn_ref | logo | logo_upright | logo_alt | logo_caption | label | label_position | length | length_km | length_mi | location | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site | mapframe | mapframe-area_km2 | mapframe-area_mi2 | mapframe-caption | mapframe-coord | mapframe-coordinates | mapframe-custom | mapframe-frame-coord | mapframe-frame-coordinates | mapframe-frame-height | mapframe-frame-width | mapframe-geomask | mapframe-geomask-fill | mapframe-geomask-fill-opacity | mapframe-geomask-stroke-color | mapframe-geomask-stroke-colour | mapframe-geomask-stroke-width | mapframe-height | mapframe-id | mapframe-length_km | mapframe-length_mi | mapframe-marker | mapframe-marker-color | mapframe-marker-colour | mapframe-point | mapframe-shape | mapframe-shape-fill | mapframe-shape-fill-opacity | mapframe-stroke-color | mapframe-stroke-colour | mapframe-stroke-width | mapframe-switcher | mapframe-width | mapframe-wikidata | mapframe-zoom | geohack-type
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
6axhxkbfnfxs1fklxpspq7rrlikn646
667154
667152
2025-10-09T22:29:25Z
Zackmann08
14653
Updating unknown parameter tracking through [[User:Zackmann08/AddCheckForUnknownParameters.js|AddCheckForUnknownParameters]] using [[Module:check for unknown parameters]]. Note that mapframe args are now included automatically via mapframe_args=y
667154
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|}}}|size={{{photo_width|}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|}}}}}
| caption2 = {{{photo_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
|auto
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
|mapframe-marker = natural
|mapframe-type = {{{geohack-type|landmark}}}
|mapframe-area_mi2={{{area_sqmi|}}}|mapframe-area_km2={{{area_km2|}}}
|mapframe-area_ha={{{area_ha|}}}|mapframe-area_acre={{{area_acre|}}}
|mapframe-length_km={{{length_km|}}}|mapframe-length_mi={{{length_mi|}}}
|mapframe-width_km={{{width_km|}}}|width_mi={{{width_mi|}}}
|mapframe-stroke-color = #008000
|mapframe-shape-fill = #5CE65C
|mapframe-marker-color = #62AB22
|mapframe-frame-width = 284
|mapframe-frame-height = 208
}}
| caption4 = {{#invoke:Infobox mapframe
|autocaption
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image_map | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
kqg7680gktkivk7r9u5gt0kywtkrhp4
667156
667154
2025-10-19T06:08:38Z
Zackmann08
14653
adding common alias for photo params (image, image_caption, image_size & image_alt). Photo params will still work just fine.
667156
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|{{{image|}}}}}}|size={{{photo_width|{{{image_size|}}}}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|{{{image_alt|}}}}}}}}
| caption2 = {{{photo_caption|{{{image_caption|}}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
|auto
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
|mapframe-marker = natural
|mapframe-type = {{{geohack-type|landmark}}}
|mapframe-area_mi2={{{area_sqmi|}}}|mapframe-area_km2={{{area_km2|}}}
|mapframe-area_ha={{{area_ha|}}}|mapframe-area_acre={{{area_acre|}}}
|mapframe-length_km={{{length_km|}}}|mapframe-length_mi={{{length_mi|}}}
|mapframe-width_km={{{width_km|}}}|width_mi={{{width_mi|}}}
|mapframe-stroke-color = #008000
|mapframe-shape-fill = #5CE65C
|mapframe-marker-color = #62AB22
|mapframe-frame-width = 284
|mapframe-frame-height = 208
}}
| caption4 = {{#invoke:Infobox mapframe
|autocaption
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
swzemwiqwp0hp1wgs82qygocy7tddaj
667158
667156
2025-10-19T06:12:09Z
Zackmann08
14653
Add clobbered parameters check ([[:Category:Pages using infobox protected area with conflicting parameters]])
667158
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|{{{image|}}}}}}|size={{{photo_width|{{{image_size|}}}}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|{{{image_alt|}}}}}}}}
| caption2 = {{{photo_caption|{{{image_caption|}}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
|auto
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
|mapframe-marker = natural
|mapframe-type = {{{geohack-type|landmark}}}
|mapframe-area_mi2={{{area_sqmi|}}}|mapframe-area_km2={{{area_km2|}}}
|mapframe-area_ha={{{area_ha|}}}|mapframe-area_acre={{{area_acre|}}}
|mapframe-length_km={{{length_km|}}}|mapframe-length_mi={{{length_mi|}}}
|mapframe-width_km={{{width_km|}}}|width_mi={{{width_mi|}}}
|mapframe-stroke-color = #008000
|mapframe-shape-fill = #5CE65C
|mapframe-marker-color = #62AB22
|mapframe-frame-width = 284
|mapframe-frame-height = 208
}}
| caption4 = {{#invoke:Infobox mapframe
|autocaption
|onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for clobbered parameters|check
| nested = 1
| template = Infobox protected area
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
k5jbhs01pux9bwd16emulap4r7i9c34
667161
667158
2025-10-20T14:45:54Z
Joy
14543
consistently name mapframe-width_mi, format list consistently
667161
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|{{{image|}}}}}}|size={{{photo_width|{{{image_size|}}}}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|{{{image_alt|}}}}}}}}
| caption2 = {{{photo_caption|{{{image_caption|}}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| auto
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{{geohack-type|landmark}}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
| caption4 = {{#invoke:Infobox mapframe
| autocaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for clobbered parameters|check
| nested = 1
| template = Infobox protected area
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
n5y61lqlj2leoln8eq3i9fisochcgjd
667162
667161
2025-11-12T06:01:07Z
Zackmann08
14653
increasing readability of map with details by thinner line
667162
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|{{{image|}}}}}}|size={{{photo_width|{{{image_size|}}}}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|{{{image_alt|}}}}}}}}
| caption2 = {{{photo_caption|{{{image_caption|}}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| auto
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{{geohack-type|landmark}}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
| caption4 = {{#invoke:Infobox mapframe
| autocaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for clobbered parameters|check
| nested = 1
| template = Infobox protected area
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
69gycl08g1wffw5kdx3cp6sgiq198th
667163
667162
2025-11-13T04:06:05Z
Zackmann08
14653
default to pulling map shape from wikidata
667163
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = <includeonly>{{{name}}}</includeonly>
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|{{{image|}}}}}}|size={{{photo_width|{{{image_size|}}}}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|{{{image_alt|}}}}}}}}
| caption2 = {{{photo_caption|{{{image_caption|}}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| auto
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{{geohack-type|landmark}}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
| caption4 = {{#invoke:Infobox mapframe
| autocaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for clobbered parameters|check
| nested = 1
| template = Infobox protected area
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
butpd53edgbrgrxf6le1cxsbgni6ij8
667164
667163
2025-11-21T00:05:14Z
Zackmann08
14653
Converting [[Module:Infobox mapframe]] call to use newly improved function. See [[Template_talk:Infobox_mapframe#Weird_preview_%22bug%22?|this thread]] for details on the change.
667164
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|{{{image|}}}}}}|size={{{photo_width|{{{image_size|}}}}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|{{{image_alt|}}}}}}}}
| caption2 = {{{photo_caption|{{{image_caption|}}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{{geohack-type|landmark}}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for clobbered parameters|check
| nested = 1
| template = Infobox protected area
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
a6dek4vil96haazz1mc6o0anqqtrrgd
667165
667164
2025-12-28T03:45:02Z
Zackmann08
14653
Module has been renamed
667165
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{photo|{{{image|}}}}}}|size={{{photo_width|{{{image_size|}}}}}}|maxsize=300px|sizedefault=284px|alt={{{photo_alt|{{{image_alt|}}}}}}}}
| caption2 = {{{photo_caption|{{{image_caption|}}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|{{{coords|}}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{map_image|{{{image_map|}}}}}}|size={{{map_size|{{{mapsize|{{{map_width|}}}}}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{{geohack-type|landmark}}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|{{{coords|}}}}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|{{{coords|}}}}}}|type:{{{geohack-type|landmark}}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{#if:{{{elevation_avg|}}}|{{{elevation_avg}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for conflicting parameters|check
| nested = 1
| template = Infobox protected area
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
05gbotww2xbwr9ivst8mxjgg1rfuyx6
667166
667165
2026-01-09T07:12:44Z
Zackmann08
14653
Improving nested param logic using [[User:Zackmann08/scripts/unnest.js|unnest]]; Updating conflicting parameter tracking through [[:Category:Pages using infobox protected area with conflicting parameters]] using [[User:Zackmann08/scripts/AddCheckForConflictingParameters.js|AddCheckForConflictingParameters]] using [[Module:check for conflicting parameters]]
667166
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{photo|}}}|{{{image|}}}}}|size={{if empty|{{{photo_width|}}}|{{{image_size|}}}}}|maxsize=300px|sizedefault=284px|alt={{if empty|{{{photo_alt|}}}|{{{image_alt|}}}}}}}
| caption2 = {{if empty|{{{photo_caption|}}}|{{{image_caption|}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{if empty|{{{coordinates|}}}|{{{coords|}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{map_image|}}}|{{{image_map|}}}}}|size={{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{if empty|{{{geohack-type|}}}|landmark}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|}}}{{{coords|}}}|{{#invoke:Coordinates|coordinsert|{{if empty|{{{coordinates|}}}|{{{coords|}}}}}|type:{{if empty|{{{geohack-type|}}}|landmark}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{if empty|{{{elevation_avg|}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}{{#invoke:Check for conflicting parameters|check
| template = [[Template:Infobox protected area]]
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
| map_size; mapsize; map_width
| map_alt; name
| coordinates; coords
| map_image; image_map
| nearest_city; nearest_town
| elevation_avg; elevation
| authorized; created; established; designated
| governing_body; administrator; operator; owner
| embedded1; embedded; module
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
9feixpt78x7zziev9o2mmqv9lqkizr5
667167
667166
2026-01-09T07:13:51Z
Zackmann08
14653
dumb typo
667167
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{photo|}}}|{{{image|}}}}}|size={{if empty|{{{photo_width|}}}|{{{image_size|}}}}}|maxsize=300px|sizedefault=284px|alt={{if empty|{{{photo_alt|}}}|{{{image_alt|}}}}}}}
| caption2 = {{if empty|{{{photo_caption|}}}|{{{image_caption|}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{if empty|{{{coordinates|}}}|{{{coords|}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{map_image|}}}|{{{image_map|}}}}}|size={{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{if empty|{{{geohack-type|}}}|landmark}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|}}}{{{coords|}}}|{{#invoke:Coordinates|coordinsert|{{if empty|{{{coordinates|}}}|{{{coords|}}}}}|type:{{if empty|{{{geohack-type|}}}|landmark}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{if empty|{{{elevation_avg|}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}{{#invoke:Check for conflicting parameters|check
| template = [[Template:Infobox protected area]]
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
| map_size; mapsize; map_width
| coordinates; coords
| map_image; image_map
| nearest_city; nearest_town
| elevation_avg; elevation
| authorized; created; established; designated
| governing_body; administrator; operator; owner
| embedded1; embedded; module
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
72usctoktha9be1adfldrazbql7a0nc
667169
667167
2026-02-22T00:35:29Z
Zackmann08
14653
Adding deprecated parameter tracking through [[:Category:Pages using infobox protected area with deprecated parameters]] using [[User:Zackmann08/scripts/AddCheckForDeprecatedParameters.js|AddCheckForDeprecatedParameters]] and [[Module:check for deprecated parameters]]
667169
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{photo|}}}|{{{image|}}}}}|size={{if empty|{{{photo_width|}}}|{{{image_size|}}}}}|maxsize=300px|sizedefault=284px|alt={{if empty|{{{photo_alt|}}}|{{{image_alt|}}}}}}}
| caption2 = {{if empty|{{{photo_caption|}}}|{{{image_caption|}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{if empty|{{{coordinates|}}}|{{{coords|}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{map_image|}}}|{{{image_map|}}}}}|size={{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{if empty|{{{geohack-type|}}}|landmark}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|}}}{{{coords|}}}|{{#invoke:Coordinates|coordinsert|{{if empty|{{{coordinates|}}}|{{{coords|}}}}}|type:{{if empty|{{{geohack-type|}}}|landmark}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{if empty|{{{elevation_avg|}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|data19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|data20 = {{if empty|{{{embedded2|}}}|{{{module2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | module2 | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}{{#invoke:Check for conflicting parameters|check
| template = [[Template:Infobox protected area]]
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
| map_size; mapsize; map_width
| coordinates; coords
| map_image; image_map
| nearest_city; nearest_town
| elevation_avg; elevation
| authorized; created; established; designated
| governing_body; administrator; operator; owner
| embedded1; embedded; module
}}{{#invoke:Check for deprecated parameters|check
| _category = {{main other|[[Category:Pages using infobox protected area with deprecated parameters|_VALUE_]]}}
| photo = image
| photo_width = image_size
| photo_alt = image_alt
| photo_caption = image_caption
| map_size = map_width
| mapsize = map_width
| coords = coordinates
| map_image = image_map
| embedded1 = module
| embedded = module
| embedded2 = module2
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
bu5sqyuxbj85eha6evpxjwonv4w3ini
667170
667169
2026-02-22T00:35:39Z
Zackmann08
14653
Undid revision [[Special:Diff/1339718402|1339718402]] by [[Special:Contributions/Zackmann08|Zackmann08]] ([[User talk:Zackmann08|talk]])
667170
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{photo|}}}|{{{image|}}}}}|size={{if empty|{{{photo_width|}}}|{{{image_size|}}}}}|maxsize=300px|sizedefault=284px|alt={{if empty|{{{photo_alt|}}}|{{{image_alt|}}}}}}}
| caption2 = {{if empty|{{{photo_caption|}}}|{{{image_caption|}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{if empty|{{{coordinates|}}}|{{{coords|}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{map_image|}}}|{{{image_map|}}}}}|size={{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{if empty|{{{geohack-type|}}}|landmark}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|}}}{{{coords|}}}|{{#invoke:Coordinates|coordinsert|{{if empty|{{{coordinates|}}}|{{{coords|}}}}}|type:{{if empty|{{{geohack-type|}}}|landmark}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{if empty|{{{elevation_avg|}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|header19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|header20 = {{{embedded2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}{{#invoke:Check for conflicting parameters|check
| template = [[Template:Infobox protected area]]
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
| map_size; mapsize; map_width
| coordinates; coords
| map_image; image_map
| nearest_city; nearest_town
| elevation_avg; elevation
| authorized; created; established; designated
| governing_body; administrator; operator; owner
| embedded1; embedded; module
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
72usctoktha9be1adfldrazbql7a0nc
667171
667170
2026-02-22T00:36:14Z
Zackmann08
14653
Undid revision [[Special:Diff/1339718435|1339718435]] by [[Special:Contributions/Zackmann08|Zackmann08]] ([[User talk:Zackmann08|talk]]) accidental revert
667171
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{photo|}}}|{{{image|}}}}}|size={{if empty|{{{photo_width|}}}|{{{image_size|}}}}}|maxsize=300px|sizedefault=284px|alt={{if empty|{{{photo_alt|}}}|{{{image_alt|}}}}}}}
| caption2 = {{if empty|{{{photo_caption|}}}|{{{image_caption|}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{if empty|{{{coordinates|}}}|{{{coords|}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{map_image|}}}|{{{image_map|}}}}}|size={{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{if empty|{{{geohack-type|}}}|landmark}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|}}}{{{coords|}}}|{{#invoke:Coordinates|coordinsert|{{if empty|{{{coordinates|}}}|{{{coords|}}}}}|type:{{if empty|{{{geohack-type|}}}|landmark}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{if empty|{{{elevation_avg|}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = {{#if:{{{governing_body|}}}|Governing body
| {{#if:{{{administrator|}}}|Administrator
| {{#if:{{{operator|}}}|Operator
| {{#if:{{{owner|}}}|Owner }}}}}}}}
|data16 = {{if empty|{{{governing_body|}}}|{{{administrator|}}}|{{{operator|}}}|{{{owner|}}} }}
|label17 = World Heritage site
|data17 = {{{world_heritage_site|}}}
|label18 = {{#if:{{{website|}}}|Website}}
|data18 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|data19 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|data20 = {{if empty|{{{embedded2|}}}|{{{module2|}}}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | module2 | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}{{#invoke:Check for conflicting parameters|check
| template = [[Template:Infobox protected area]]
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
| map_size; mapsize; map_width
| coordinates; coords
| map_image; image_map
| nearest_city; nearest_town
| elevation_avg; elevation
| authorized; created; established; designated
| governing_body; administrator; operator; owner
| embedded1; embedded; module
}}{{#invoke:Check for deprecated parameters|check
| _category = {{main other|[[Category:Pages using infobox protected area with deprecated parameters|_VALUE_]]}}
| photo = image
| photo_width = image_size
| photo_alt = image_alt
| photo_caption = image_caption
| map_size = map_width
| mapsize = map_width
| coords = coordinates
| map_image = image_map
| embedded1 = module
| embedded = module
| embedded2 = module2
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
lx53umgjrwf5dgihqcj372kkph2igm4
667173
667171
2026-02-22T00:44:53Z
Zackmann08
14653
Given the number of pages in [[Category:Pages using infobox protected area with conflicting parameters]], these need not be mutually exclusive parameters.
667173
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{photo|}}}|{{{image|}}}}}|size={{if empty|{{{photo_width|}}}|{{{image_size|}}}}}|maxsize=300px|sizedefault=284px|alt={{if empty|{{{photo_alt|}}}|{{{image_alt|}}}}}}}
| caption2 = {{if empty|{{{photo_caption|}}}|{{{image_caption|}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{if empty|{{{coordinates|}}}|{{{coords|}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{map_image|}}}|{{{image_map|}}}}}|size={{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{if empty|{{{geohack-type|}}}|landmark}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|}}}{{{coords|}}}|{{#invoke:Coordinates|coordinsert|{{if empty|{{{coordinates|}}}|{{{coords|}}}}}|type:{{if empty|{{{geohack-type|}}}|landmark}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{if empty|{{{elevation_avg|}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|rowclass12 = note
|label12 = {{#if:{{{authorized|}}}|Authorized
| {{#if:{{{created|}}}|Created
| {{#if:{{{established|}}}|Established
| {{#if:{{{designated|}}}|Designated }}}}}}}}
|data12 = {{if empty|{{{authorized|}}}|{{{created|}}}|{{{established|}}}|{{{designated|}}} }}
|label13 = {{#if:{{{disestablished|}}}|Disestablished}}
|data13 = {{{disestablished|}}}
|label14 = Named for
|data14 = {{{named_for|}}}
|label15 = Visitors
|data15 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label16 = Governing body
|data16 = {{{governing_body|}}}
|label17 = Operator
|data17 = {{{operator|}}}
|label18 = Owner
|data18 = {{{owner|}}}
|label19 = Administrator
|data19 = {{{administrator|}}}
|label20 = World Heritage site
|data20 = {{{world_heritage_site|}}}
|label21 = {{#if:{{{website|}}}|Website}}
|data21 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|data22 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|data23 = {{if empty|{{{embedded2|}}}|{{{module2|}}}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | module2 | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}{{#invoke:Check for conflicting parameters|check
| template = [[Template:Infobox protected area]]
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
| map_size; mapsize; map_width
| coordinates; coords
| map_image; image_map
| nearest_city; nearest_town
| elevation_avg; elevation
| authorized; created; established; designated
| embedded1; embedded; module
}}{{#invoke:Check for deprecated parameters|check
| _category = {{main other|[[Category:Pages using infobox protected area with deprecated parameters|_VALUE_]]}}
| photo = image
| photo_width = image_size
| photo_alt = image_alt
| photo_caption = image_caption
| map_size = map_width
| mapsize = map_width
| coords = coordinates
| map_image = image_map
| embedded1 = module
| embedded = module
| embedded2 = module2
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
3rhq5z3ru9d9c4tbpjgju6tlrb9276a
667175
667173
2026-02-22T01:01:01Z
Zackmann08
14653
Again, no reason for these to be mutually exclusive parameters.
667175
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{photo|}}}|{{{image|}}}}}|size={{if empty|{{{photo_width|}}}|{{{image_size|}}}}}|maxsize=300px|sizedefault=284px|alt={{if empty|{{{photo_alt|}}}|{{{image_alt|}}}}}}}
| caption2 = {{if empty|{{{photo_caption|}}}|{{{image_caption|}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{if empty|{{{coordinates|}}}|{{{coords|}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{map_image|}}}|{{{image_map|}}}}}|size={{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{if empty|{{{geohack-type|}}}|landmark}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|}}}{{{coords|}}}|{{#invoke:Coordinates|coordinsert|{{if empty|{{{coordinates|}}}|{{{coords|}}}}}|type:{{if empty|{{{geohack-type|}}}|landmark}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{if empty|{{{elevation_avg|}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|label12 = Authorized
|data12 = {{{authorized|}}}
|label13 = Created
|data13 = {{{created|}}}
|label14 = Established
|data14 = {{{established|}}}
|label15 = Designated
|data15 = {{{designated|}}}
|label16 = {{#if:{{{disestablished|}}}|Disestablished}}
|data16 = {{{disestablished|}}}
|label17 = Named for
|data17 = {{{named_for|}}}
|label18 = Visitors
|data18 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label19 = Governing body
|data19 = {{{governing_body|}}}
|label20 = Operator
|data20 = {{{operator|}}}
|label21 = Owner
|data21 = {{{owner|}}}
|label22 = Administrator
|data22 = {{{administrator|}}}
|label23 = World Heritage site
|data23 = {{{world_heritage_site|}}}
|label24 = {{#if:{{{website|}}}|Website}}
|data24 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|data25 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|data26 = {{if empty|{{{embedded2|}}}|{{{module2|}}}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | module2 | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}{{#invoke:Check for conflicting parameters|check
| template = [[Template:Infobox protected area]]
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
| map_size; mapsize; map_width
| coordinates; coords
| map_image; image_map
| nearest_city; nearest_town
| elevation_avg; elevation
| embedded1; embedded; module
}}{{#invoke:Check for deprecated parameters|check
| _category = {{main other|[[Category:Pages using infobox protected area with deprecated parameters|_VALUE_]]}}
| photo = image
| photo_width = image_size
| photo_alt = image_alt
| photo_caption = image_caption
| map_size = map_width
| mapsize = map_width
| coords = coordinates
| map_image = image_map
| embedded1 = module
| embedded = module
| embedded2 = module2
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
bp8ixwk1ytracq52vqnra39uddg9dsu
667177
667175
2026-02-23T05:48:10Z
Zackmann08
14653
So I screwed that up....
667177
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{photo|}}}|{{{image|}}}}}|size={{if empty|{{{photo_width|}}}|{{{image_size|}}}}}|maxsize=300px|sizedefault=284px|alt={{if empty|{{{photo_alt|}}}|{{{image_alt|}}}}}}}
| caption2 = {{if empty|{{{photo_caption|}}}|{{{image_caption|}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{if empty|{{{coordinates|}}}|{{{coords|}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{map_image|}}}|{{{image_map|}}}}}|size={{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{if empty|{{{geohack-type|}}}|landmark}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|}}}{{{coords|}}}|{{#invoke:Coordinates|coordinsert|{{if empty|{{{coordinates|}}}|{{{coords|}}}}}|type:{{if empty|{{{geohack-type|}}}|landmark}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{if empty|{{{elevation_avg|}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|label12 = Authorized
|data12 = {{{authorized|}}}
|label13 = Created
|data13 = {{{created|}}}
|label14 = Established
|data14 = {{{established|}}}
|label15 = Designated
|data15 = {{{designated|}}}
|label16 = {{#if:{{{disestablished|}}}|Disestablished}}
|data16 = {{{disestablished|}}}
|label17 = Named for
|data17 = {{{named_for|}}}
|label18 = Visitors
|data18 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label19 = Governing body
|data19 = {{{governing_body|}}}
|label20 = Operator
|data20 = {{{operator|}}}
|label21 = Owner
|data21 = {{{owner|}}}
|label22 = Administrator
|data22 = {{{administrator|}}}
|label23 = World Heritage site
|data23 = {{{world_heritage_site|}}}
|label24 = {{#if:{{{website|}}}|Website}}
|data24 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|data25 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|data26 = {{if empty|{{{embedded2|}}}|{{{module2|}}}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | module2 | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}{{#invoke:Check for conflicting parameters|check
| template = [[Template:Infobox protected area]]
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
| map_size; mapsize; map_width
| coordinates; coords
| map_image; image_map
| nearest_city; nearest_town
| elevation_avg; elevation
| embedded1; embedded; module
}}{{#invoke:Check for deprecated parameters|check
| _category = {{main other|[[Category:Pages using infobox protected area with deprecated parameters|_VALUE_]]}}
| photo = image
| photo_width = image_size
| photo_alt = image_alt
| photo_caption = image_caption
| map_width = mapsize
| map_size = mapsize
| coords = coordinates
| map_image = image_map
| embedded1 = module
| embedded = module
| embedded2 = module2
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
3miwc0s7a5v7620ye54btv4qnagarih
667179
667177
2026-02-23T05:48:34Z
Zackmann08
14653
Just not going to do this one.
667179
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{photo|}}}|{{{image|}}}}}|size={{if empty|{{{photo_width|}}}|{{{image_size|}}}}}|maxsize=300px|sizedefault=284px|alt={{if empty|{{{photo_alt|}}}|{{{image_alt|}}}}}}}
| caption2 = {{if empty|{{{photo_caption|}}}|{{{image_caption|}}}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{if empty|{{{coordinates|}}}|{{{coords|}}}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{map_image|}}}|{{{image_map|}}}}}|size={{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{map_image|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{if empty|{{{geohack-type|}}}|landmark}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|}}}{{{coords|}}}|{{#invoke:Coordinates|coordinsert|{{if empty|{{{coordinates|}}}|{{{coords|}}}}}|type:{{if empty|{{{geohack-type|}}}|landmark}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{if empty|{{{elevation_avg|}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|label12 = Authorized
|data12 = {{{authorized|}}}
|label13 = Created
|data13 = {{{created|}}}
|label14 = Established
|data14 = {{{established|}}}
|label15 = Designated
|data15 = {{{designated|}}}
|label16 = {{#if:{{{disestablished|}}}|Disestablished}}
|data16 = {{{disestablished|}}}
|label17 = Named for
|data17 = {{{named_for|}}}
|label18 = Visitors
|data18 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label19 = Governing body
|data19 = {{{governing_body|}}}
|label20 = Operator
|data20 = {{{operator|}}}
|label21 = Owner
|data21 = {{{owner|}}}
|label22 = Administrator
|data22 = {{{administrator|}}}
|label23 = World Heritage site
|data23 = {{{world_heritage_site|}}}
|label24 = {{#if:{{{website|}}}|Website}}
|data24 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|data25 = {{if empty|{{{embedded1|}}}|{{{embedded|}}}|{{{module|}}} }}
|data26 = {{if empty|{{{embedded2|}}}|{{{module2|}}}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | embedded | embedded1 | embedded2 | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_image | map_size | map_width | mapsize | mark | marker_size | module | module2 | name | named_for | nearest_city | nearest_town | operator | owner | photo | photo_alt | photo_caption | photo_width | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}{{#invoke:Check for conflicting parameters|check
| template = [[Template:Infobox protected area]]
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| photo; image
| photo_width; image_size
| photo_alt; image_alt
| photo_caption; image_caption
| map_size; mapsize; map_width
| coordinates; coords
| map_image; image_map
| nearest_city; nearest_town
| elevation_avg; elevation
| embedded1; embedded; module
}}{{#invoke:Check for deprecated parameters|check
| _category = {{main other|[[Category:Pages using infobox protected area with deprecated parameters|_VALUE_]]}}
| photo = image
| photo_width = image_size
| photo_alt = image_alt
| photo_caption = image_caption
| coords = coordinates
| map_image = image_map
| embedded1 = module
| embedded = module
| embedded2 = module2
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
j77cwld89m103hy173aheuzs6jp498c
667181
667179
2026-02-25T05:01:14Z
Zackmann08
14653
Removing deprecated parameters that have been removed from transclusions.
667181
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{image|}}}|size={{{image_size|}}}|maxsize=300px|sizedefault=284px|alt={{{image_alt|}}}}}
| caption2 = {{{image_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{image_map|}}}|size={{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{if empty|{{{geohack-type|}}}|landmark}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|}}}|type:{{if empty|{{{geohack-type|}}}|landmark}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{if empty|{{{elevation_avg|}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|label12 = Authorized
|data12 = {{{authorized|}}}
|label13 = Created
|data13 = {{{created|}}}
|label14 = Established
|data14 = {{{established|}}}
|label15 = Designated
|data15 = {{{designated|}}}
|label16 = Disestablished
|data16 = {{{disestablished|}}}
|label17 = Named for
|data17 = {{{named_for|}}}
|label18 = Visitors
|data18 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label19 = Governing body
|data19 = {{{governing_body|}}}
|label20 = Operator
|data20 = {{{operator|}}}
|label21 = Owner
|data21 = {{{owner|}}}
|label22 = Administrator
|data22 = {{{administrator|}}}
|label23 = World Heritage site
|data23 = {{{world_heritage_site|}}}
|label24 = Website
|data24 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|data25 = {{{module|}}}
|data26 = {{{module2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_size | map_width | mapsize | mark | marker_size | module | module2 | name | named_for | nearest_city | nearest_town | operator | owner | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}{{#invoke:Check for conflicting parameters|check
| template = [[Template:Infobox protected area]]
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| map_size; mapsize; map_width
| nearest_city; nearest_town
| elevation_avg; elevation
| website; url
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
dpv6anz0epon2tshpfu6zqhzxjmwh5t
667188
667181
2026-06-29T12:40:27Z
King ChristLike
13051
348 revisions imported from [[:en:Template:Infobox_protected_area]]
667181
wikitext
text/x-wiki
{{infobox
|bodyclass = vcard
|subheaderstyle = font-size: 100%;
|child = {{{child|}}}
|aboveclass = fn org
|above = {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
|subheader1 = {{{alt_name|}}}
|subheader2 = {{IUCN banner|{{{iucn_category|}}}|{{{iucn_ref|}}}}}
| image1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{logo|}}}|upright={{{logo_upright|}}}|alt={{{logo_alt|}}}}}
| caption1 = {{{logo_caption|}}}
| image2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{image|}}}|size={{{image_size|}}}|maxsize=300px|sizedefault=284px|alt={{{image_alt|}}}}}
| caption2 = {{{image_caption|}}}
| image3 = {{#if:{{{map|}}} | {{location map|{{{map|}}}
| border = infobox | float = center
| width = {{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}
| default_width = 284
| max_width = 300
| AlternativeMap = {{{AlternativeMap|}}}
| relief = {{{relief|}}}
| label = {{{label|}}}
| position = {{{label_position|}}}
| caption = {{{map_caption|}}}
| alt = {{if empty|{{{map_alt|}}}|Map showing the location of {{{name|}}} }}
| mark = {{{mark|}}}
| marksize = {{{marker_size|}}}
| coordinates = {{{coordinates|}}} }}
| {{#invoke:InfoboxImage|InfoboxImage|image={{{image_map|}}}|size={{if empty|{{{map_size|}}}|{{{mapsize|}}}|{{{map_width|}}}}}|maxsize=300px|sizedefault=284px|alt={{{map_alt|}}}}}
}}
| caption3 = {{#if:{{{map|}}} || {{{map_caption|}}} }}
| image4 = {{#invoke:Infobox mapframe
| autoWithCaption
| onByDefault = {{#if:{{{map|}}}{{{image_map|}}}{{{child|}}}|no|yes}}
| mapframe-marker = natural
| mapframe-type = {{if empty|{{{geohack-type|}}}|landmark}}
| mapframe-area_mi2 = {{{area_sqmi|}}}
| mapframe-area_km2 = {{{area_km2|}}}
| mapframe-area_ha = {{{area_ha|}}}
| mapframe-area_acre = {{{area_acre|}}}
| mapframe-length_km = {{{length_km|}}}
| mapframe-length_mi = {{{length_mi|}}}
| mapframe-width_km = {{{width_km|}}}
| mapframe-width_mi = {{{width_mi|}}}
| mapframe-wikidata = yes
| mapframe-stroke-color = #008000
| mapframe-stroke-width = 1
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
| mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{PAGENAMEBASE}}}}
}}
|rowclass1 = locality
|label1 = Location
|data1 = {{{location|}}}
|rowclass2 = note
|label2 = {{#if:{{{nearest_city|}}}|Nearest city
| {{#if:{{{nearest_town|}}}|Nearest town }}}}
|data2 = {{if empty|{{{nearest_city|}}}|{{{nearest_town|}}}}}
|label3 = Coordinates
|data3 = {{#if:{{{coordinates|}}}|{{#invoke:Coordinates|coordinsert|{{{coordinates|}}}|type:{{if empty|{{{geohack-type|}}}|landmark}}|<!--
-->{{#if:{{{area_km2|}}}{{{area_sqmi|}}}{{{area_acre|}}}{{{area_ha|}}}<!--
-->{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|<!---
-->dim:{{Infobox dim|length_km={{{length_km|}}}|length_mi={{{length_mi|}}}|<!--
-->width_km={{{width_km|}}}|width_mi={{{width_mi|}}}|<!--
-->area_km2={{{area_km2|}}}|area_mi2={{{area_sqmi|}}}|<!--
-->area_ha={{{area_ha|}}}|area_acre={{{area_acre|}}} }} }}<!--
-->}}{{{coords_ref|}}}|}}
|label4 = Length
|data4 = {{#if:{{{length|}}}|{{{length}}}|{{#if:{{{length_km|}}}{{{length_mi|}}}|<!--
-->{{convinfobox|{{{length_km|}}}|km|{{{length_mi|}}}|mi}} }} }}
|label5 = Width
|data5 = {{#if:{{{width|}}}|{{{width}}}|{{#if:{{{width_km|}}}{{{width_mi|}}}|<!--
-->{{convinfobox|{{{width_km|}}}|km|{{{width_mi|}}}|mi}} }} }}
|label6 = Area
|data6 = {{#switch: 1
| {{#if:{{{area_km2|}}}{{{area_sqmi|}}}|1|0}} = {{convinfobox|{{{area_km2|}}}|km2|{{{area_sqmi|}}}|sqmi}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_acre|}}}|R}} > 988}} = {{convinfobox|{{{area_acre}}}|acres||km2}}{{{area_ref|}}}
| {{#expr: {{formatnum:{{{area_ha|}}}|R}} > 1036}} = {{convinfobox|{{{area_ha}}}|ha||sqmi}}{{{area_ref|}}}
| {{#if:{{{area_ha|}}}{{{area_acre|}}}|1|0}} = {{convinfobox|{{{area_ha|}}}|ha|{{{area_acre|}}}|acre}}{{{area_ref|}}}
| {{#if:{{{area|}}}|1|0}} = {{{area|}}}{{{area_ref|}}} }}
|label7 = {{#if:{{{elevation_avg|}}}|Average elevation|Elevation}}
|data7 = {{if empty|{{{elevation_avg|}}}|{{{elevation|}}}}}
|label8 = Max. elevation
|data8 = {{{elevation_max|}}}
|label9 = Min. elevation
|data9 = {{{elevation_min|}}}
|label10 = Dimensions
|data10 = {{{dimensions|}}}
|label11 = Designation
|data11 = {{{designation|}}}
|label12 = Authorized
|data12 = {{{authorized|}}}
|label13 = Created
|data13 = {{{created|}}}
|label14 = Established
|data14 = {{{established|}}}
|label15 = Designated
|data15 = {{{designated|}}}
|label16 = Disestablished
|data16 = {{{disestablished|}}}
|label17 = Named for
|data17 = {{{named_for|}}}
|label18 = Visitors
|data18 = {{#if:{{{visitation_num|}}}|{{{visitation_num|}}}<!--
-->{{#if:{{{visitation_year|}}}|{{sp}}(in {{{visitation_year|}}}) }}<!--
-->{{#if:{{{visitation_ref|}}}|{{{visitation_ref|}}}}} }}
|label19 = Governing body
|data19 = {{{governing_body|}}}
|label20 = Operator
|data20 = {{{operator|}}}
|label21 = Owner
|data21 = {{{owner|}}}
|label22 = Administrator
|data22 = {{{administrator|}}}
|label23 = World Heritage site
|data23 = {{{world_heritage_site|}}}
|label24 = Website
|data24 = {{#if:{{{website|}}}
| {{{website|}}}
| {{#if:{{{url|}}}
| {{#ifexpr:{{#invoke:string|find|{{{url}}}|^https?:[^ ]*$|plain=false}} | {{URL|1={{{url|}}}}} | {{{url}}} }}
}}
}}
|data25 = {{{module|}}}
|data26 = {{{module2|}}}
}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox protected area with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox protected area]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y| administrator | alt_name | AlternativeMap | area | area_acre | area_ha | area_km2 | area_ref | area_sqmi | authorized | child | coordinates | coords_ref | created | designated | designation | dimensions | disestablished | elevation | elevation_avg | elevation_max | elevation_min | established | geohack-type | governing_body | image | image_alt | image_caption | image_map | image_size | iucn_category | iucn_ref | label | label_position | length | length_km | length_mi | location | logo | logo_alt | logo_caption | logo_upright | map | map_alt | map_caption | map_size | map_width | mapsize | mark | marker_size | module | module2 | name | named_for | nearest_city | nearest_town | operator | owner | relief | url | visitation_num | visitation_ref | visitation_year | website | width | width_km | width_mi | world_heritage_site }}{{#invoke:Check for conflicting parameters|check
| template = [[Template:Infobox protected area]]
| cat = {{main other|Category:Pages using infobox protected area with conflicting parameters}}
| map_size; mapsize; map_width
| nearest_city; nearest_town
| elevation_avg; elevation
| website; url
}}<noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES TO THE /doc SUBPAGE, THANKS -->
</noinclude>
dpv6anz0epon2tshpfu6zqhzxjmwh5t
Templeeti:Infobox dim
10
77120
667411
2012-06-23T04:47:29Z
Hike395
26964
template for computing dimension of object
667411
wikitext
text/x-wiki
<includeonly>{{Infobox dim/core|{{#if:{{{length_mi|}}}|{{#expr:{{{length_mi}}}*1.609}}|{{{length_km|}}} }}|<!--
-->|{{#if:{{{width_mi|}}}|{{#expr:{{{width_mi}}}*1.609}}|{{{width_km|}}} }} }}</includeonly>
evwihecin3f8w9wt3fni7e3v48l525k
667412
667411
2012-06-23T04:52:29Z
Hike395
26964
add doc
667412
wikitext
text/x-wiki
<includeonly>{{Infobox dim/core|{{#if:{{{length_mi|}}}|{{#expr:{{{length_mi}}}*1.609}}|{{{length_km|}}} }}|<!--
-->|{{#if:{{{width_mi|}}}|{{#expr:{{{width_mi}}}*1.609}}|{{{width_km|}}} }} }}</includeonly><noinclude>{{Documentation}}</noinclude>
llixbzwr19i0zbyrb7m2n5y8wdy533e
667413
667412
2012-06-23T05:08:02Z
Hike395
26964
rm extra bar
667413
wikitext
text/x-wiki
<includeonly>{{Infobox dim/core|{{#if:{{{length_mi|}}}|{{#expr:{{{length_mi}}}*1.609}}|{{{length_km|}}} }}|<!--
-->{{#if:{{{width_mi|}}}|{{#expr:{{{width_mi}}}*1.609}}|{{{width_km|}}} }} }}</includeonly><noinclude>{{Documentation}}</noinclude>
63p8vur7bb1v40ayri7p1rlfqekt00v
667414
667413
2012-06-23T06:00:44Z
Hike395
26964
667414
wikitext
text/x-wiki
<includeonly>{{Infobox dim/core|{{#if:{{{length_mi|}}}|{{#expr:{{{length_mi}}}*1.609}}|{{{length_km|}}} }}|<!--
-->{{#if:{{{width_mi|}}}|{{#expr:{{{width_mi}}}*1.609}}|{{{width_km|}}} }}|<!--
-->{{#if:{{{area_mi2|}}}|{{#expr:{{{area_mi2}}}*2.589}}|{{{area_km2|}}} }} }}</includeonly><noinclude>{{Documentation}}</noinclude>
imdvqru9ib78axjmbj86fjyivgod5q3
667415
667414
2015-12-14T07:49:31Z
The Earwig
28215
Protected "[[Template:Infobox dim]]": [[WP:High-risk templates|Highly visible template]]: nearly 15,000 mainspace transclusions ([Edit=Allow only template editors and admins] (indefinite) [Move=Allow only template editors and admins] (indefinite))
667414
wikitext
text/x-wiki
<includeonly>{{Infobox dim/core|{{#if:{{{length_mi|}}}|{{#expr:{{{length_mi}}}*1.609}}|{{{length_km|}}} }}|<!--
-->{{#if:{{{width_mi|}}}|{{#expr:{{{width_mi}}}*1.609}}|{{{width_km|}}} }}|<!--
-->{{#if:{{{area_mi2|}}}|{{#expr:{{{area_mi2}}}*2.589}}|{{{area_km2|}}} }} }}</includeonly><noinclude>{{Documentation}}</noinclude>
imdvqru9ib78axjmbj86fjyivgod5q3
667416
667415
2016-12-23T17:39:55Z
Hike395
26964
accept area_ha and area_acre parameters
667416
wikitext
text/x-wiki
<includeonly>{{Infobox dim/core|{{#if:{{{length_mi|}}}|{{#expr:{{{length_mi}}}*1.609}}|{{{length_km|}}} }}|<!--
-->{{#if:{{{width_mi|}}}|{{#expr:{{{width_mi}}}*1.609}}|{{{width_km|}}} }}|<!--
-->{{#switch: 1
| {{#if:{{{area_mi2|}}}|1|0}} = {{#expr:{{{area_mi2}}}*2.59}}
| {{#if:{{{area_acre|}}}|1|0}} = {{#expr:{{{area_acre}}}*0.004047}}
| {{#if:{{{area_ha|}}}|1|0}} = {{#expr:{{{area_ha}}}*0.01}}
| {{#if:{{{area_km2|}}}|1|0}} = {{{area_km2}}} }} }}</includeonly><noinclude>
{{Documentation}}</noinclude>
i9yo6vtfnq5559d8ntd3ftbmf8ax06g
667417
667416
2016-12-24T14:28:16Z
Hike395
26964
remove numeric formatting before processing
667417
wikitext
text/x-wiki
<includeonly>{{Infobox dim/core|{{#if:{{{length_mi|}}}|{{#expr:{{formatnum:{{{length_mi}}}|R}}*1.609}}|{{formatnum:{{{length_km|}}}|R}} }}|<!--
-->{{#if:{{{width_mi|}}}|{{#expr:{{formatnum:{{{width_mi}}}|R}}*1.609}}|{{formatnum:{{{width_km|}}}|R}} }}|<!--
-->{{#switch: 1
| {{#if:{{{area_mi2|}}}|1|0}} = {{#expr:{{formatnum:{{{area_mi2}}}|R}}*2.59}}
| {{#if:{{{area_acre|}}}|1|0}} = {{#expr:{{formatnum:{{{area_acre}}}|R}}*0.004047}}
| {{#if:{{{area_ha|}}}|1|0}} = {{#expr:{{formatnum:{{{area_ha}}}|R}}*0.01}}
| {{#if:{{{area_km2|}}}|1|0}} = {{formatnum:{{{area_km2}}}|R}} }} }}</includeonly><noinclude>
{{Documentation}}</noinclude>
0o0wxw6qhkjb0n6puqmy717ss81gr9w
667418
667417
2019-03-18T21:29:20Z
Zackmann08
14653
Adding unknown parameter tracking through [[:Category:Pages using infobox dim with unknown parameters]] using [[Module:check for unknown parameters]]
667418
wikitext
text/x-wiki
<includeonly>{{Infobox dim/core|{{#if:{{{length_mi|}}}|{{#expr:{{formatnum:{{{length_mi}}}|R}}*1.609}}|{{formatnum:{{{length_km|}}}|R}} }}|<!--
-->{{#if:{{{width_mi|}}}|{{#expr:{{formatnum:{{{width_mi}}}|R}}*1.609}}|{{formatnum:{{{width_km|}}}|R}} }}|<!--
-->{{#switch: 1
| {{#if:{{{area_mi2|}}}|1|0}} = {{#expr:{{formatnum:{{{area_mi2}}}|R}}*2.59}}
| {{#if:{{{area_acre|}}}|1|0}} = {{#expr:{{formatnum:{{{area_acre}}}|R}}*0.004047}}
| {{#if:{{{area_ha|}}}|1|0}} = {{#expr:{{formatnum:{{{area_ha}}}|R}}*0.01}}
| {{#if:{{{area_km2|}}}|1|0}} = {{formatnum:{{{area_km2}}}|R}} }} }}</includeonly>{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox dim with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox dim]] with unknown parameter "_VALUE_"|ignoreblank=y| area_acre | area_ha | area_km2 | area_mi2 | length_km | length_mi | width_km | width_mi }}<noinclude>
{{Documentation}}</noinclude>
r5r7vibyj6pgduifq4go9f8c8vx0aaa
667419
667418
2024-10-05T00:28:05Z
Hike395
26964
use Lua implementation
667419
wikitext
text/x-wiki
<includeonly>{{#invoke:Infobox dim|dim}}</includeonly>{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox dim with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox dim]] with unknown parameter "_VALUE_"|ignoreblank=y| area_acre | area_ha | area_km2 | area_mi2 | dim | length_km | length_mi | population | scale | type | width_km | width_mi }}<noinclude>
{{Documentation}}</noinclude>
org8j6bsncioq5mz4206h0g8y73xl1y
667420
667419
2026-06-29T12:40:37Z
King ChristLike
13051
9 revisions imported from [[:en:Template:Infobox_dim]]
667419
wikitext
text/x-wiki
<includeonly>{{#invoke:Infobox dim|dim}}</includeonly>{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox dim with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox dim]] with unknown parameter "_VALUE_"|ignoreblank=y| area_acre | area_ha | area_km2 | area_mi2 | dim | length_km | length_mi | population | scale | type | width_km | width_mi }}<noinclude>
{{Documentation}}</noinclude>
org8j6bsncioq5mz4206h0g8y73xl1y
Templeeti:IUCN banner
10
77121
667467
2011-02-15T23:10:11Z
Droll
31361
new template
667467
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category II ([[National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[International Union for Conservation of Nature|IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[International Union for Conservation of Nature|IUCN]] category was entered.</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
pccx1z7fs7kvaj6ymql46ymu32av0np
667469
667467
2011-05-03T19:40:11Z
Droll
31361
update per [[Template talk:Infobox protected area#Trivial substitution]]
667469
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;">[[IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[IUCN]]<!--
--> Category II ([[National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[IUCN]]<!--
--> Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN]] category was entered.</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
7plphpg3rdoadxe32i7hbgx1vugeb1i
667471
667469
2011-05-26T00:42:24Z
Dabomb87
28337
Protected Template:IUCN banner: [[WP:High-risk templates|Highly visible template]] ([edit=sysop] (indefinite) [move=sysop] (indefinite))
667469
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;">[[IUCN]]<!--
--> Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[IUCN]]<!--
--> Category Ib ([[Wilderness Area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[IUCN]]<!--
--> Category II ([[National Park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[IUCN]]<!--
--> Category III ([[Natural Monument]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[IUCN]]<!--
--> Category IV (Habitat/Species Management Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[IUCN]]<!--
--> Category V (Protected Landscape/Seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[IUCN]]<!--
--> Category VI (Managed Resource Protected Area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN]] category was entered.</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
7plphpg3rdoadxe32i7hbgx1vugeb1i
667474
667471
2012-03-15T22:17:30Z
Tra
14584
change category names per talk
667474
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;">[[IUCN]]<!--
--> category Ia ([[Nature reserve|strict nature reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[IUCN]]<!--
--> category Ib ([[wilderness area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[IUCN]]<!--
--> category II ([[national park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[IUCN]]<!--
--> category III ([[natural monument|natural monument or feature]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[IUCN]]<!--
--> category IV (habitat/species management area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[IUCN]]<!--
--> category V (protected landscape/seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[IUCN]]<!--
--> category VI (protected area with sustainable use of natural recources)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN]] category was entered.</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
m8i1d4lhmbsqqjw4rrktmgi9tzacvwq
667475
667474
2012-04-19T02:22:27Z
Anomie
14483
Spelling fix, per talk request
667475
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;">[[IUCN]]<!--
--> category Ia ([[Nature reserve|strict nature reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[IUCN]]<!--
--> category Ib ([[wilderness area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[IUCN]]<!--
--> category II ([[national park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[IUCN]]<!--
--> category III ([[natural monument|natural monument or feature]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[IUCN]]<!--
--> category IV (habitat/species management area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[IUCN]]<!--
--> category V (protected landscape/seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[IUCN]]<!--
--> category VI (protected area with sustainable use of natural resources)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN]] category was entered.</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
g0patjr9k287h97qduv9rbk94b1jds6
667476
667475
2013-10-19T11:18:56Z
WOSlinker
3423
Changed protection level of Template:IUCN banner: allow template editors to modify ([Edit=Protected template] (indefinite) [Move=Protected template] (indefinite))
667475
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;">[[IUCN]]<!--
--> category Ia ([[Nature reserve|strict nature reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[IUCN]]<!--
--> category Ib ([[wilderness area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[IUCN]]<!--
--> category II ([[national park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[IUCN]]<!--
--> category III ([[natural monument|natural monument or feature]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[IUCN]]<!--
--> category IV (habitat/species management area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[IUCN]]<!--
--> category V (protected landscape/seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[IUCN]]<!--
--> category VI (protected area with sustainable use of natural resources)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN]] category was entered.</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
g0patjr9k287h97qduv9rbk94b1jds6
667477
667476
2018-11-11T20:52:05Z
Zackmann08
14653
+ tracking category [[Category:Pages using IUCN banner with invalid value]]
667477
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;">[[IUCN]]<!--
--> category Ia ([[Nature reserve|strict nature reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[IUCN]]<!--
--> category Ib ([[wilderness area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[IUCN]]<!--
--> category II ([[national park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[IUCN]]<!--
--> category III ([[natural monument|natural monument or feature]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[IUCN]]<!--
--> category IV (habitat/species management area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[IUCN]]<!--
--> category V (protected landscape/seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[IUCN]]<!--
--> category VI (protected area with sustainable use of natural resources)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN]] category was entered.[[Category:Pages using IUCN banner with invalid value]]</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
5nvfhy7m7awr5qo9wpgfitvlmpnbqa4
667478
667477
2018-11-11T23:52:55Z
Zackmann08
14653
don't categorize templates
667478
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;">[[IUCN]]<!--
--> category Ia ([[Nature reserve|strict nature reserve]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[IUCN]]<!--
--> category Ib ([[wilderness area]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[IUCN]]<!--
--> category II ([[national park]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[IUCN]]<!--
--> category III ([[natural monument|natural monument or feature]])</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[IUCN]]<!--
--> category IV (habitat/species management area)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[IUCN]]<!--
--> category V (protected landscape/seascape)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[IUCN]]<!--
--> category VI (protected area with sustainable use of natural resources)</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN]] category was entered.{{main other|[[Category:Pages using IUCN banner with invalid value]]}}</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
7uqpvyz6i8u9ygrruhgpv7uryvqmuw0
667480
667478
2018-11-12T00:40:21Z
Zackmann08
14653
adding support for reference
667480
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;">[[IUCN]]<!--
--> category Ia ([[Nature reserve|strict nature reserve]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[IUCN]]<!--
--> category Ib ([[wilderness area]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[IUCN]]<!--
--> category II ([[national park]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[IUCN]]<!--
--> category III ([[natural monument|natural monument or feature]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[IUCN]]<!--
--> category IV (habitat/species management area){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[IUCN]]<!--
--> category V (protected landscape/seascape){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[IUCN]]<!--
--> category VI (protected area with sustainable use of natural resources){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN]] category was entered.{{main other|[[Category:Pages using IUCN banner with invalid value]]}}</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
m11siqg36xwtr0ht61988v8573so6ey
667482
667480
2020-02-23T00:01:28Z
Izno
4303
per tper
667482
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;">[[IUCN]]<!--
--> category Ia ([[strict nature reserve]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;">[[IUCN]]<!--
--> category Ib ([[wilderness area]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[IUCN]]<!--
--> category II ([[national park]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[IUCN]]<!--
--> category III ([[natural monument|natural monument or feature]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[IUCN]]<!--
--> category IV (habitat/species management area){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[IUCN]]<!--
--> category V (protected landscape/seascape){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[IUCN]]<!--
--> category VI (protected area with sustainable use of natural resources){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN]] category was entered.{{main other|[[Category:Pages using IUCN banner with invalid value]]}}</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
tnlbxgb5fvdl8x7ughbp7grnfvtxbzi
667484
667482
2020-03-15T18:09:53Z
Timrollpickering
14530
/* top */remove cat per [[Wikipedia:Categories for discussion/Log/2020 February 22]], removed: IUCN Category Ia
667484
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;">[[IUCN]]<!--
--> category Ia ([[strict nature reserve]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||}}
| IB = <div style="background-color: #DACAA5;">[[IUCN]]<!--
--> category Ib ([[wilderness area]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[IUCN]]<!--
--> category II ([[national park]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[IUCN]]<!--
--> category III ([[natural monument|natural monument or feature]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[IUCN]]<!--
--> category IV (habitat/species management area){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[IUCN]]<!--
--> category V (protected landscape/seascape){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[IUCN]]<!--
--> category VI (protected area with sustainable use of natural resources){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN]] category was entered.{{main other|[[Category:Pages using IUCN banner with invalid value]]}}</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
c1xjsoztqtgbk2lf736rj02cku3r5ck
667487
667484
2021-02-20T03:30:08Z
Matt Fitzpatrick
14590
implemented edit request by Reywas92, links to IUCN protected area categories instead of IUCN
667487
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;">[[IUCN protected area categories|IUCN category]]<!--
--> Ia ([[strict nature reserve]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||}}
| IB = <div style="background-color: #DACAA5;">[[IUCN protected area categories|IUCN category]]<!--
--> Ib ([[wilderness area]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;">[[IUCN protected area categories|IUCN category]]<!--
--> II ([[national park]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;">[[IUCN protected area categories|IUCN category]]<!--
--> III ([[natural monument|natural monument or feature]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;">[[IUCN protected area categories|IUCN category]]<!--
--> IV (habitat/species management area){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;">[[IUCN protected area categories|IUCN category]]<!--
--> V (protected landscape/seascape){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;">[[IUCN protected area categories|IUCN category]]<!--
--> VI (protected area with sustainable use of natural resources){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN protected area categories|IUCN category]] was entered.{{main other|[[Category:Pages using IUCN banner with invalid value]]}}</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
8okc103pifdn2ou69n8ols7dn4szjv8
667488
667487
2025-10-03T01:07:41Z
Jonesey95
14480
fix text color in dark mode; this generally works but may cause problems, in which case revert or try specifying a different CSS value
667488
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> Ia ([[strict nature reserve]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||}}
| IB = <div style="background-color: #DACAA5;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> Ib ([[wilderness area]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> II ([[national park]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> III ([[natural monument|natural monument or feature]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> IV (habitat/species management area){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> V (protected landscape/seascape){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> VI (protected area with sustainable use of natural resources){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN protected area categories|IUCN category]] was entered.{{main other|[[Category:Pages using IUCN banner with invalid value]]}}</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
bah70h2n0ljttmubomtqd3xnv8k8nxx
667489
667488
2026-05-03T16:14:22Z
Zackmann08
14653
Adding missing category per request from [[user:Arcahaeoindris]]
667489
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> Ia ([[strict nature reserve]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> Ib ([[wilderness area]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> II ([[national park]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> III ([[natural monument|natural monument or feature]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> IV (habitat/species management area){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> V (protected landscape/seascape){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> VI (protected area with sustainable use of natural resources){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN protected area categories|IUCN category]] was entered.{{main other|[[Category:Pages using IUCN banner with invalid value]]}}</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
8tq5inn2kgb5m7yjvqm5st4uleuzeie
667490
667489
2026-06-29T12:40:40Z
King ChristLike
13051
14 revisions imported from [[:en:Template:IUCN_banner]]
667489
wikitext
text/x-wiki
{{#if: {{{1|}}} | {{#switch: {{uc:{{{1|}}}}}
| IA = <div style="background-color: #E7AF97;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> Ia ([[strict nature reserve]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ia]]}}
| IB = <div style="background-color: #DACAA5;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> Ib ([[wilderness area]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category Ib]]}}
| II = <div style="background-color: #CDE5B2;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> II ([[national park]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category II]]}}
| III = <div style="background-color: #BFFFBF;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> III ([[natural monument|natural monument or feature]]){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category III]]}}
| IV = <div style="background-color: #B2E5CD;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> IV (habitat/species management area){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category IV]]}}
| V = <div style="background-color: #A5CADA;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> V (protected landscape/seascape){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category V]]}}
| VI = <div style="background-color: #A8BDEC;color:inherit;">[[IUCN protected area categories|IUCN category]]<!--
--> VI (protected area with sustainable use of natural resources){{{2|}}}</div>{{#if:{{NAMESPACE}}||[[Category:IUCN Category VI]]}}
| #default = <div style="color: #C80815; font-weight: bold;">An unknown <!--
-->[[IUCN protected area categories|IUCN category]] was entered.{{main other|[[Category:Pages using IUCN banner with invalid value]]}}</div>
}} }}<noinclude>
{{Documentation}}
<!--
PLEASE ADD CATEGORIES AND INTERWIKIS
TO THE /doc SUBPAGE, THANKS
-->
</noinclude>
8tq5inn2kgb5m7yjvqm5st4uleuzeie
Templeeti:Infobox protected area/doc
10
77122
667539
2007-05-12T12:17:44Z
Pigsonthewing
6277
moved; microformat
667539
wikitext
text/x-wiki
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==Using the Template==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
<!-- The following few lines create the "Infobox" table template.
Please scroll down to edit the main content of the article. -->
{{Infobox_protected_area | name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
}}
<!-- End Infobox template table -->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding Coordinates for the Locator Dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
==Under the Hood==
===Sub-Templates===
This template calls the following sub-templates:
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{[[Template:Infobox_protected_area/IUCN_Ia|Infobox_protected_area/IUCN_Ia]]}} ([[Template_talk: Infobox_protected_area/IUCN_Ia|talk]])
** {{[[Template:Infobox_protected_area/IUCN_Ib|Infobox_protected_area/IUCN_Ib]]}} ([[Template_talk: Infobox_protected_area/IUCN_Ib|talk]])
** {{[[Template:Infobox_protected_area/IUCN_II|Infobox_protected_area/IUCN_II]]}} ([[Template_talk: Infobox_protected_area/IUCN_II|talk]])
** {{[[Template:Infobox_protected_area/IUCN_III|Infobox_protected_area/IUCN_III]]}} ([[Template_talk: Infobox_protected_area/IUCN_III|talk]])
** {{[[Template:Infobox_protected_area/IUCN_IV|Infobox_protected_area/IUCN_IV]]}} ([[Template_talk: Infobox_protected_area/IUCN_IV|talk]])
** {{[[Template:Infobox_protected_area/IUCN_V|Infobox_protected_area/IUCN_V]]}} ([[Template_talk: Infobox_protected_area/IUCN_V|talk]])
** {{[[Template:Infobox_protected_area/IUCN_VI|Infobox_protected_area/IUCN_VI]]}} ([[Template_talk: Infobox_protected_area/IUCN_VI|talk]])
* {{[[Template:Superimpose|Superimpose]]}} ([[Template_talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{[[Template:Coor_dms|Coor_dms]]}} ([[Template_talk:Coor_dms|talk]]) formats the coordinates and makes the link to other mapping resources.
===Optional Fields (CSS Magic)===
Most fields are optional because their table rows are assigned the CSS class "hiddenStructure", which hides them by default. Providing a value changes the name of that class and reveals the corresponding table row. This technique is drawn from the example provided by the model template {{[[Template:Infobox|Infobox]]}}.
==Microformat==
{{UF-hcard-geo}}
==See also==
* [http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
5pb7gpunheknpdj1xigxx9qsvh0fzuh
667541
667539
2007-05-21T22:52:43Z
Zyxw
14644
standardize formatting of transcluded documentation, place categories and interwikis here instead of in template
667541
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==Using the Template==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
<!-- The following few lines create the "Infobox" table template.
Please scroll down to edit the main content of the article. -->
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
}}
<!-- End Infobox template table -->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding Coordinates for the Locator Dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
==Under the Hood==
===Sub-Templates===
This template calls the following sub-templates:
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{[[Template:Infobox_protected_area/IUCN_Ia|Infobox_protected_area/IUCN_Ia]]}} ([[Template_talk: Infobox_protected_area/IUCN_Ia|talk]])
** {{[[Template:Infobox_protected_area/IUCN_Ib|Infobox_protected_area/IUCN_Ib]]}} ([[Template_talk: Infobox_protected_area/IUCN_Ib|talk]])
** {{[[Template:Infobox_protected_area/IUCN_II|Infobox_protected_area/IUCN_II]]}} ([[Template_talk: Infobox_protected_area/IUCN_II|talk]])
** {{[[Template:Infobox_protected_area/IUCN_III|Infobox_protected_area/IUCN_III]]}} ([[Template_talk: Infobox_protected_area/IUCN_III|talk]])
** {{[[Template:Infobox_protected_area/IUCN_IV|Infobox_protected_area/IUCN_IV]]}} ([[Template_talk: Infobox_protected_area/IUCN_IV|talk]])
** {{[[Template:Infobox_protected_area/IUCN_V|Infobox_protected_area/IUCN_V]]}} ([[Template_talk: Infobox_protected_area/IUCN_V|talk]])
** {{[[Template:Infobox_protected_area/IUCN_VI|Infobox_protected_area/IUCN_VI]]}} ([[Template_talk: Infobox_protected_area/IUCN_VI|talk]])
* {{[[Template:Superimpose|Superimpose]]}} ([[Template_talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{[[Template:Coor_dms|Coor_dms]]}} ([[Template_talk:Coor_dms|talk]]) formats the coordinates and makes the link to other mapping resources.
===Optional Fields (CSS Magic)===
Most fields are optional because their table rows are assigned the CSS class "hiddenStructure", which hides them by default. Providing a value changes the name of that class and reveals the corresponding table row. This technique is drawn from the example provided by the model template {{[[Template:Infobox|Infobox]]}}.
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
fkg6ipqumboc1gth6zmt3gmiyfavvzq
667543
667541
2007-05-22T00:06:53Z
Zyxw
14644
replace reference to {{coor dms}} with {{coord}}, remove CSS magic section (out of date), show subtemplates, add an example infobox with code
667543
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==Using the Template==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
<!-- The following few lines create the "Infobox" table template.
Please scroll down to edit the main content of the article. -->
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
}}
<!-- End Infobox template table -->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding Coordinates for the Locator Dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
==Sub-templates==
This template calls the following sub-templates:
{| class="infobox" style="width:300px; font-size:90%; text-align:center;"
|-
| {{Infobox_protected_area/IUCN_Ia}}
|-
| {{Infobox_protected_area/IUCN_Ib}}
|-
| {{Infobox_protected_area/IUCN_II}}
|-
| {{Infobox_protected_area/IUCN_III}}
|-
| {{Infobox_protected_area/IUCN_IV}}
|-
| {{Infobox_protected_area/IUCN_V}}
|-
| {{Infobox_protected_area/IUCN_VI}}
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template_talk: Infobox_protected_area/IUCN_Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template_talk: Infobox_protected_area/IUCN_Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template_talk: Infobox_protected_area/IUCN_II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template_talk: Infobox_protected_area/IUCN_III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template_talk: Infobox_protected_area/IUCN_IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template_talk: Infobox_protected_area/IUCN_V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template_talk: Infobox_protected_area/IUCN_VI|talk]])
* {{tl|Superimpose}} ([[Template_talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template_talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Example ==
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = US_Locator_Blank.svg
| caption =
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States|USA]]
| nearest_city = [[Mariposa, California]]
| nearest major city = [[Fresno,California]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
<pre style="font-size:90%; width:350px; overflow:auto; margin-right:5px">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = US_Locator_Blank.svg
| caption =
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States|USA]]
| nearest_city = [[Mariposa, California]]
| nearest major city = [[Fresno,California]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
6tlsd3qmawap0rmtc8lh8bvl0vm3ji0
667544
667543
2007-05-22T00:10:00Z
Zyxw
14644
/* Example */ changes to location and cities in example
667544
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==Using the Template==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
<!-- The following few lines create the "Infobox" table template.
Please scroll down to edit the main content of the article. -->
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
}}
<!-- End Infobox template table -->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding Coordinates for the Locator Dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
==Sub-templates==
This template calls the following sub-templates:
{| class="infobox" style="width:300px; font-size:90%; text-align:center;"
|-
| {{Infobox_protected_area/IUCN_Ia}}
|-
| {{Infobox_protected_area/IUCN_Ib}}
|-
| {{Infobox_protected_area/IUCN_II}}
|-
| {{Infobox_protected_area/IUCN_III}}
|-
| {{Infobox_protected_area/IUCN_IV}}
|-
| {{Infobox_protected_area/IUCN_V}}
|-
| {{Infobox_protected_area/IUCN_VI}}
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template_talk: Infobox_protected_area/IUCN_Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template_talk: Infobox_protected_area/IUCN_Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template_talk: Infobox_protected_area/IUCN_II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template_talk: Infobox_protected_area/IUCN_III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template_talk: Infobox_protected_area/IUCN_IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template_talk: Infobox_protected_area/IUCN_V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template_talk: Infobox_protected_area/IUCN_VI|talk]])
* {{tl|Superimpose}} ([[Template_talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template_talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Example ==
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = US_Locator_Blank.svg
| caption =
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
<pre style="font-size:90%; width:350px; overflow:auto; margin-right:5px">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = US_Locator_Blank.svg
| caption =
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
2wk40fhun0vztvagt9otwnzpi6mr9m8
667546
667544
2007-05-22T00:16:54Z
Zyxw
14644
add examples with photograph and without an image
667546
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==Using the Template==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
<!-- The following few lines create the "Infobox" table template.
Please scroll down to edit the main content of the article. -->
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
}}
<!-- End Infobox template table -->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding Coordinates for the Locator Dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
==Sub-templates==
This template calls the following sub-templates:
{| class="infobox" style="width:300px; font-size:90%; text-align:center;"
|-
| {{Infobox_protected_area/IUCN_Ia}}
|-
| {{Infobox_protected_area/IUCN_Ib}}
|-
| {{Infobox_protected_area/IUCN_II}}
|-
| {{Infobox_protected_area/IUCN_III}}
|-
| {{Infobox_protected_area/IUCN_IV}}
|-
| {{Infobox_protected_area/IUCN_V}}
|-
| {{Infobox_protected_area/IUCN_VI}}
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template_talk: Infobox_protected_area/IUCN_Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template_talk: Infobox_protected_area/IUCN_Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template_talk: Infobox_protected_area/IUCN_II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template_talk: Infobox_protected_area/IUCN_III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template_talk: Infobox_protected_area/IUCN_IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template_talk: Infobox_protected_area/IUCN_V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template_talk: Infobox_protected_area/IUCN_VI|talk]])
* {{tl|Superimpose}} ([[Template_talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template_talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = US_Locator_Blank.svg
| caption =
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
<pre style="font-size:90%; width:350px; overflow:auto; margin-right:5px">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = US_Locator_Blank.svg
| caption =
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
===With photograph===
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = 100 1325.JPG
| caption =
| locator_x =
| locator_y =
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
<pre style="font-size:90%; width:350px; overflow:auto; margin-right:5px">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = 100 1325.JPG
| caption =
| locator_x =
| locator_y =
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image =
| caption =
| locator_x =
| locator_y =
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
<pre style="font-size:90%; width:350px; overflow:auto; margin-right:5px">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image =
| caption =
| locator_x =
| locator_y =
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
ea8j4nqoalhq3g9un0d7xd94drjs5yt
667547
667546
2007-05-22T00:21:51Z
Zyxw
14644
/* With photograph */ add caption to this example
667547
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==Using the Template==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
<!-- The following few lines create the "Infobox" table template.
Please scroll down to edit the main content of the article. -->
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
}}
<!-- End Infobox template table -->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding Coordinates for the Locator Dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
==Sub-templates==
This template calls the following sub-templates:
{| class="infobox" style="width:300px; font-size:90%; text-align:center;"
|-
| {{Infobox_protected_area/IUCN_Ia}}
|-
| {{Infobox_protected_area/IUCN_Ib}}
|-
| {{Infobox_protected_area/IUCN_II}}
|-
| {{Infobox_protected_area/IUCN_III}}
|-
| {{Infobox_protected_area/IUCN_IV}}
|-
| {{Infobox_protected_area/IUCN_V}}
|-
| {{Infobox_protected_area/IUCN_VI}}
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template_talk: Infobox_protected_area/IUCN_Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template_talk: Infobox_protected_area/IUCN_Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template_talk: Infobox_protected_area/IUCN_II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template_talk: Infobox_protected_area/IUCN_III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template_talk: Infobox_protected_area/IUCN_IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template_talk: Infobox_protected_area/IUCN_V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template_talk: Infobox_protected_area/IUCN_VI|talk]])
* {{tl|Superimpose}} ([[Template_talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template_talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = US_Locator_Blank.svg
| caption =
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
<pre style="font-size:90%; width:350px; overflow:auto; margin-right:5px">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = US_Locator_Blank.svg
| caption =
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = 100 1325.JPG
| caption = Yosemite Valley from Tunnel View
| locator_x =
| locator_y =
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
<pre style="font-size:90%; width:350px; overflow:auto; margin-right:5px">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = 100 1325.JPG
| caption =
| locator_x =
| locator_y =
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image =
| caption =
| locator_x =
| locator_y =
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
<pre style="font-size:90%; width:350px; overflow:auto; margin-right:5px">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image =
| caption =
| locator_x =
| locator_y =
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
3o0z99ufyuvryg5rxhpomkmb10eget0
667548
667547
2007-05-22T00:22:26Z
Zyxw
14644
/* With photograph and caption */ add caption in code also
667548
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==Using the Template==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
<!-- The following few lines create the "Infobox" table template.
Please scroll down to edit the main content of the article. -->
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
}}
<!-- End Infobox template table -->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding Coordinates for the Locator Dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
==Sub-templates==
This template calls the following sub-templates:
{| class="infobox" style="width:300px; font-size:90%; text-align:center;"
|-
| {{Infobox_protected_area/IUCN_Ia}}
|-
| {{Infobox_protected_area/IUCN_Ib}}
|-
| {{Infobox_protected_area/IUCN_II}}
|-
| {{Infobox_protected_area/IUCN_III}}
|-
| {{Infobox_protected_area/IUCN_IV}}
|-
| {{Infobox_protected_area/IUCN_V}}
|-
| {{Infobox_protected_area/IUCN_VI}}
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template_talk: Infobox_protected_area/IUCN_Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template_talk: Infobox_protected_area/IUCN_Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template_talk: Infobox_protected_area/IUCN_II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template_talk: Infobox_protected_area/IUCN_III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template_talk: Infobox_protected_area/IUCN_IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template_talk: Infobox_protected_area/IUCN_V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template_talk: Infobox_protected_area/IUCN_VI|talk]])
* {{tl|Superimpose}} ([[Template_talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template_talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = US_Locator_Blank.svg
| caption =
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
<pre style="font-size:90%; width:350px; overflow:auto; margin-right:5px">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = US_Locator_Blank.svg
| caption =
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = 100 1325.JPG
| caption = Yosemite Valley from Tunnel View
| locator_x =
| locator_y =
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
<pre style="font-size:90%; width:350px; overflow:auto; margin-right:5px">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image = 100 1325.JPG
| caption = Yosemite Valley from Tunnel View
| locator_x =
| locator_y =
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image =
| caption =
| locator_x =
| locator_y =
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
<pre style="font-size:90%; width:350px; overflow:auto; margin-right:5px">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| image =
| caption =
| locator_x =
| locator_y =
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_degrees = 37
| lat_minutes = 50
| lat_seconds = 0
| lat_direction = N
| long_degrees = 119
| long_minutes = 30
| long_seconds = 0
| long_direction = W
| area = 761,266 acres (3,081 km²)
| established = [[October 1]] [[1890]]
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
fk698v3pyoyz2m0311fqg1ffaqhcwxl
667549
667548
2007-05-23T05:33:07Z
David Kernow
14542
Sentence-casing headings (per [[WP:MoS]]), syntax layout, proportional units, font-size
667549
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
<!--
The following few lines create the "Infobox" table template.
Please scroll down to edit the main content of the article.
-->{{Infobox Protected area
|name =
|iucn_category =
|image =
|caption =
|base_width =
|locator_x =
|locator_y =
|location =
|nearest_city =
|lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
|long_degrees= |long_minutes= |long_seconds= |long_direction=
|area =
|established =
|visitation_num =
|visitation_year =
|governing_body =
}}<!--
End Infobox template table
-->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
k4ma6albwn2jc3wxd65w7ct1pus2m5k
667550
667549
2007-05-24T04:06:47Z
MONGO
62717
/* Usage */ try this
667550
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
<!--
The following few lines create the "Infobox" table template.
Please scroll down to edit the main content of the article.
-->{{Infobox Protected area
|name =
|iucn_category =
|image =
|caption =
|base_width =
|locator_x =
|locator_y =
|location =
|nearest_city =
|lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
|long_degrees= |long_minutes= |long_seconds= |long_direction=
|area =
|established =
|visitation_num =
|visitation_year =
|governing_body =
|world_heritage_site =
}}<!--
End Infobox template table
-->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
4a60lnmxduzzhvw099p38a1tjumbxwl
667551
667550
2007-05-24T04:13:11Z
MONGO
62717
/* With locator map */ adding to update
667551
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
<!--
The following few lines create the "Infobox" table template.
Please scroll down to edit the main content of the article.
-->{{Infobox Protected area
|name =
|iucn_category =
|image =
|caption =
|base_width =
|locator_x =
|locator_y =
|location =
|nearest_city =
|lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
|long_degrees= |long_minutes= |long_seconds= |long_direction=
|area =
|established =
|visitation_num =
|visitation_year =
|governing_body =
|world_heritage_site =
}}<!--
End Infobox template table
-->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
noy53awge8ojxfry3i3n51ihs9rsyqy
667552
667551
2007-05-24T04:13:41Z
MONGO
62717
/* With photograph and caption */ adding to update
667552
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
<!--
The following few lines create the "Infobox" table template.
Please scroll down to edit the main content of the article.
-->{{Infobox Protected area
|name =
|iucn_category =
|image =
|caption =
|base_width =
|locator_x =
|locator_y =
|location =
|nearest_city =
|lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
|long_degrees= |long_minutes= |long_seconds= |long_direction=
|area =
|established =
|visitation_num =
|visitation_year =
|governing_body =
|world_heritage_site =
}}<!--
End Infobox template table
-->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
gl193n7lbk7h5v5pos9vz98oi2oe20t
667553
667552
2007-05-24T04:14:10Z
MONGO
62717
/* With no image */ adding to update
667553
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
<!--
The following few lines create the "Infobox" table template.
Please scroll down to edit the main content of the article.
-->{{Infobox Protected area
|name =
|iucn_category =
|image =
|caption =
|base_width =
|locator_x =
|locator_y =
|location =
|nearest_city =
|lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
|long_degrees= |long_minutes= |long_seconds= |long_direction=
|area =
|established =
|visitation_num =
|visitation_year =
|governing_body =
|world_heritage_site =
}}<!--
End Infobox template table
-->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
qkwvuuua4tl9jwweq625a24fgetqphq
667554
667553
2007-07-08T21:06:23Z
Mwtoews
37914
/* Usage */ I don't think the begining comments of the template code are needed
667554
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
|name =
|iucn_category =
|image =
|caption =
|base_width =
|locator_x =
|locator_y =
|location =
|nearest_city =
|lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
|long_degrees= |long_minutes= |long_seconds= |long_direction=
|area =
|established =
|visitation_num =
|visitation_year =
|governing_body =
|world_heritage_site =
}}<!--
End Infobox template table
-->
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
bwu5fr112u8nq1x714n204r9g6qmf2w
667555
667554
2007-07-08T21:07:50Z
Mwtoews
37914
/* Usage */ ... nor the ending comments; indented code so it is clear where it begins and ends
667555
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
obq54439kppu64iarhfsk9bedomxzjj
667556
667555
2007-07-22T01:12:50Z
Paintman
888
+es:
667556
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
mnpldy9vukhtw4xhvceyed8h4h0mrpq
667557
667556
2007-08-30T14:27:30Z
Qyd
38093
/* Examples */ +With image and map
667557
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
==With image and map==
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
i1bwmynblvmpyxmtzut1wnwban5tbxm
667558
667557
2008-02-05T17:26:34Z
Qyd
38093
/* With image and map */ heading level
667558
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:geography infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
pkx8l1sfzx0i0es40lo2ru0g5mi7ybw
667559
667558
2008-03-28T09:33:02Z
Woohookitty
31240
cat
667559
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:WikiProject Protected areas|Infobox protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
4ztpg0p7vol7ptf9y72r7k8szrf1dax
667560
667559
2008-03-28T09:34:43Z
Woohookitty
31240
rem redundant cat
667560
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
02wd55le9cctfa9fnmr06ulpn55zgom
667561
667560
2008-05-03T21:35:49Z
Chrishmt0423
46996
/* Sub-templates */ add
667561
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
* {{Infobox Protected area/World Heritage Site}} is a subtemplate specifically design for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
0vcrrb06etto3zcphdbvmn1rktpiz4w
667562
667561
2008-05-03T21:36:55Z
Chrishmt0423
46996
/* Sub-templates */ mfix
667562
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
* <nowiki>{{Infobox Protected area/World Heritage Site}}</nowiki> is a subtemplate specifically design for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
9n0yu3mnywx52fg67z3td9i4m63uuqf
667563
667562
2008-05-03T21:37:39Z
Chrishmt0423
46996
/* Sub-templates */ mfix
667563
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
* {{tl|Infobox Protected area/World Heritage Site}} is a subtemplate specifically design for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
si52fp5wxsnd9lr4c9wpmq9ywblxjx7
667564
667563
2008-05-03T22:13:42Z
Chrishmt0423
46996
/* Sub-templates */ fix link
667564
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically design for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
</includeonly>
fs4ifehwm88xw995np95f37ktla1nav
667565
667564
2008-05-25T19:40:09Z
200.102.93.149
+ [[pt:Predefinição:Info/Área protegida]]
667565
wikitext
text/x-wiki
<includeonly>{{template doc page transcluded}}</includeonly>
<noinclude>{{template doc page viewed directly}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically design for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
ti574z7lcm9g9ah0h1aic0pj4ncmbj5
667566
667565
2008-07-02T07:55:45Z
Fryed-peach
14544
+ja
667566
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically design for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
pvl05brip85uthdrjtuu8dn6oo8fklx
667567
667566
2008-07-09T06:35:54Z
MONGO
62717
/* With image and map */ adjust...leaving parameter unanswered if not applicable, but still needed for copy and paste of infobox
667567
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| lat_degrees= |lat_minutes= |lat_seconds= |lat_direction=
| long_degrees= |long_minutes= |long_seconds= |long_direction=
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* If you have only degrees and minutes, set the seconds to "0".
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category and coordinates.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Coord}} ([[Template talk:Coord|talk]]) formats the coordinates and makes the link to other mapping resources.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically design for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|lat_degrees=37 |lat_minutes=50 |lat_seconds=0 |lat_direction=N
|long_degrees=119 |long_minutes=30 |long_seconds=0 |long_direction=W
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| lat_degrees = 51
| lat_minutes = 56
| lat_seconds = 10
| lat_direction = N
| long_degrees = 112
| long_minutes = 57
| long_seconds = 41
| long_direction = W
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
nvreznm8iah34ndae290ixbh4igd5gm
667569
667567
2008-07-25T22:17:46Z
EncMstr
568
update with coords= info; note backward compatibility
667569
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically design for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
awc15mqnov2c8k5f3bdxdtprxugmi6f
667570
667569
2008-07-26T07:56:43Z
EncMstr
568
/* Examples */ update examples with most {{coord}} parameters
667570
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically design for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
5dh55m2ektefaka5pe1u84mi8gnm32b
667571
667570
2008-08-01T16:19:24Z
Geniac
28217
/* Usage */ added spaces after equals signs
667571
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| iucn_category =
| image =
| caption =
| base_width =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional'''.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically design for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
6y8qzqsb91y9uhalo4b03b5y5zurkdy
667572
667571
2008-08-27T10:04:20Z
LeheckaG
46724
Updated parameter documentation to reflect current source code
667572
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| width = 300
| native_name =
| iucn_category =
| image =
| base_width = 288
| caption =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body = in
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional''', except ''name''.
* Values (300 and 288) supplied above are the defaults coded into the template.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details,
* if ''coords'' is not supplied, ''lat_*'' and ''long_*'' are used to build a Coord template.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically design for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
== Parameters ==
<table class="wikitable">
<th>Parameter</th>
<th>Mandatory or Optional</th>
<th>Default</th>
<th>Description</th>
<tr>
<th>width=</th>
<td>Optional</td>
<td>300</td>
<td> </td>
</tr>
<tr>
<th>name=</th>
<td>Mandatory</td>
<td>Undefined</td>
<td> </td>
</tr>
<tr>
<th>native_name=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>iucn_category=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>image=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>base_width=</th>
<td>Optional</td>
<td>288</td>
<td> </td>
</tr>
<tr>
<th>caption=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_x=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_y=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>location=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>nearest_city=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>coords=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>area=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>established=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_num=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_year=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>governing_body=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>world_heritage_site=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
</table>
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
kyjkoctyfz2dv1iagm9t2gr15wll0c0
667574
667572
2008-08-27T10:05:23Z
LeheckaG
46724
/* Usage */ typo "in" after governing_body
667574
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| width = 300
| native_name =
| iucn_category =
| image =
| base_width = 288
| caption =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
}}
</pre>
* Each group of items above is '''optional''', except ''name''.
* Values (300 and 288) supplied above are the defaults coded into the template.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details,
* if ''coords'' is not supplied, ''lat_*'' and ''long_*'' are used to build a Coord template.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically design for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
== Parameters ==
<table class="wikitable">
<th>Parameter</th>
<th>Mandatory or Optional</th>
<th>Default</th>
<th>Description</th>
<tr>
<th>width=</th>
<td>Optional</td>
<td>300</td>
<td> </td>
</tr>
<tr>
<th>name=</th>
<td>Mandatory</td>
<td>Undefined</td>
<td> </td>
</tr>
<tr>
<th>native_name=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>iucn_category=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>image=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>base_width=</th>
<td>Optional</td>
<td>288</td>
<td> </td>
</tr>
<tr>
<th>caption=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_x=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_y=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>location=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>nearest_city=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>coords=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>area=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>established=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_num=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_year=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>governing_body=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>world_heritage_site=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
</table>
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
gxl0l0yd2xod0wavcexomx4b619yfma
667576
667574
2008-10-04T02:59:47Z
en>Danorton
0
add essential doc for "website" field
667576
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| width = 300
| native_name =
| iucn_category =
| image =
| base_width = 288
| caption =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| website =
}}
</pre>
* Each group of items above is '''optional''', except ''name''.
* Values (300 and 288) supplied above are the defaults coded into the template.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details,
* if ''coords'' is not supplied, ''lat_*'' and ''long_*'' are used to build a Coord template.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
* The "website" field should link to the official external website (or web page) for the protected area. The link should be specified so that "http" and other symbols aren't shown (i.e. instead of "[http://www.fs.fed.us/ http://www.fs.fed.us/]", it should appear as [http://www.fs.fed.us/ www.fs.fed.us]). If the [[domain name]] and [[Uniform Resource Identifier|URI]] are too long, consider using the site's title instead (i.e. instead of [http://www.fs.fed.us/r5/inyo/ www.fs.fed.us/r5/inyo/], use the more concise [http://www.fs.fed.us/r5/inyo/ Inyo National Forest].
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically designed for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
== Parameters ==
<table class="wikitable">
<th>Parameter</th>
<th>Mandatory or Optional</th>
<th>Default</th>
<th>Description</th>
<tr>
<th>width=</th>
<td>Optional</td>
<td>300</td>
<td> </td>
</tr>
<tr>
<th>name=</th>
<td>Mandatory</td>
<td>Undefined</td>
<td> </td>
</tr>
<tr>
<th>native_name=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>iucn_category=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>image=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>base_width=</th>
<td>Optional</td>
<td>288</td>
<td> </td>
</tr>
<tr>
<th>caption=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_x=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_y=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>location=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>nearest_city=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>coords=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>area=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>established=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_num=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_year=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>governing_body=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>world_heritage_site=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>website=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
</table>
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
sdq3fefgwn2568fqrjk0og8g51xn8yo
667578
667576
2008-10-04T03:06:26Z
en>Danorton
0
add website field to examples
667578
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| width = 300
| native_name =
| iucn_category =
| image =
| base_width = 288
| caption =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| website =
}}
</pre>
* Each group of items above is '''optional''', except ''name''.
* Values (300 and 288) supplied above are the defaults coded into the template.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details,
* if ''coords'' is not supplied, ''lat_*'' and ''long_*'' are used to build a Coord template.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
* The ''website'' field should link to the official external website (or web page) for the protected area. The link should be specified so that "http" and other symbols aren't shown (i.e. instead of "[http://www.fs.fed.us/ http://www.fs.fed.us/]", it should appear as [http://www.fs.fed.us/ www.fs.fed.us]). If the [[domain name]] and [[Uniform Resource Identifier|URI]] are too long, consider using the site's title, instead (i.e. instead of [http://www.fs.fed.us/r5/inyo/ www.fs.fed.us/r5/inyo/], use the more concise [http://www.fs.fed.us/r5/inyo/ Inyo National Forest].
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically designed for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
== Parameters ==
<table class="wikitable">
<th>Parameter</th>
<th>Mandatory or Optional</th>
<th>Default</th>
<th>Description</th>
<tr>
<th>width=</th>
<td>Optional</td>
<td>300</td>
<td> </td>
</tr>
<tr>
<th>name=</th>
<td>Mandatory</td>
<td>Undefined</td>
<td> </td>
</tr>
<tr>
<th>native_name=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>iucn_category=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>image=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>base_width=</th>
<td>Optional</td>
<td>288</td>
<td> </td>
</tr>
<tr>
<th>caption=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_x=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_y=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>location=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>nearest_city=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>coords=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>area=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>established=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_num=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_year=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>governing_body=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>world_heritage_site=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>website=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
</table>
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
hco8p6qqdi4ou1m3rwomqj3oik6a8jh
667580
667578
2008-10-04T05:45:44Z
en>Danorton
0
refer to more detailed information on specifying external links
667580
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| width = 300
| native_name =
| iucn_category =
| image =
| base_width = 288
| caption =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| website =
}}
</pre>
* Each group of items above is '''optional''', except ''name''.
* Values (300 and 288) supplied above are the defaults coded into the template.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details,
* if ''coords'' is not supplied, ''lat_*'' and ''long_*'' are used to build a Coord template.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
* The ''website'' field should link to the official external website (or web page) for the protected area. The link should be specified so that "http" and other symbols aren't shown (i.e. instead of "[http://www.fs.fed.us/ http://www.fs.fed.us/]", it should appear as [http://www.fs.fed.us/ www.fs.fed.us]). If the [[domain name]] and [[Uniform Resource Identifier|URI]] are too long, consider using the site's title, instead (i.e. instead of [http://www.fs.fed.us/r5/inyo/ www.fs.fed.us/r5/inyo/], use the more concise [http://www.fs.fed.us/r5/inyo/ Inyo National Forest]. See [[Help:URL#URLs in external links|URLs in external links]] for more detailed information.
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically designed for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
== Parameters ==
<table class="wikitable">
<th>Parameter</th>
<th>Mandatory or Optional</th>
<th>Default</th>
<th>Description</th>
<tr>
<th>width=</th>
<td>Optional</td>
<td>300</td>
<td> </td>
</tr>
<tr>
<th>name=</th>
<td>Mandatory</td>
<td>Undefined</td>
<td> </td>
</tr>
<tr>
<th>native_name=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>iucn_category=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>image=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>base_width=</th>
<td>Optional</td>
<td>288</td>
<td> </td>
</tr>
<tr>
<th>caption=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_x=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_y=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>location=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>nearest_city=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>coords=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>area=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>established=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_num=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_year=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>governing_body=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>world_heritage_site=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>website=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
</table>
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
qiqhmtadv8kx1fisb2ykjczmzd6sg2l
667582
667580
2008-10-04T05:47:59Z
en>Danorton
0
close paren
667582
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| width = 300
| native_name =
| iucn_category =
| image =
| base_width = 288
| caption =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| website =
}}
</pre>
* Each group of items above is '''optional''', except ''name''.
* Values (300 and 288) supplied above are the defaults coded into the template.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details,
* if ''coords'' is not supplied, ''lat_*'' and ''long_*'' are used to build a Coord template.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
* The ''website'' field should link to the official external website (or web page) for the protected area. The link should be specified so that "http" and other symbols aren't shown (i.e. instead of "[http://www.fs.fed.us/ http://www.fs.fed.us/]", it should appear as [http://www.fs.fed.us/ www.fs.fed.us]). If the [[domain name]] and [[Uniform Resource Identifier|URI]] are too long, consider using the site's title, instead (i.e. instead of [http://www.fs.fed.us/r5/inyo/ www.fs.fed.us/r5/inyo/], use the more concise [http://www.fs.fed.us/r5/inyo/ Inyo National Forest].) See [[Help:URL#URLs in external links|URLs in external links]] for more detailed information.
===Finding coordinates for the locator dot===
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically designed for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
== Parameters ==
<table class="wikitable">
<th>Parameter</th>
<th>Mandatory or Optional</th>
<th>Default</th>
<th>Description</th>
<tr>
<th>width=</th>
<td>Optional</td>
<td>300</td>
<td> </td>
</tr>
<tr>
<th>name=</th>
<td>Mandatory</td>
<td>Undefined</td>
<td> </td>
</tr>
<tr>
<th>native_name=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>iucn_category=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>image=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>base_width=</th>
<td>Optional</td>
<td>288</td>
<td> </td>
</tr>
<tr>
<th>caption=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_x=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_y=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>location=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>nearest_city=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>coords=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>area=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>established=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_num=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_year=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>governing_body=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>world_heritage_site=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>website=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
</table>
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
pnrjqp9tejxoatvpxqow8smh0skceus
667584
667582
2008-10-04T05:59:53Z
en>Danorton
0
/* Finding coordinates for the locator dot */ {{update||May 2008}}
667584
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| width = 300
| native_name =
| iucn_category =
| image =
| base_width = 288
| caption =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| website =
}}
</pre>
* Each group of items above is '''optional''', except ''name''.
* Values (300 and 288) supplied above are the defaults coded into the template.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details,
* if ''coords'' is not supplied, ''lat_*'' and ''long_*'' are used to build a Coord template.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
* The ''website'' field should link to the official external website (or web page) for the protected area. The link should be specified so that "http" and other symbols aren't shown (i.e. instead of "[http://www.fs.fed.us/ http://www.fs.fed.us/]", it should appear as [http://www.fs.fed.us/ www.fs.fed.us]). If the [[domain name]] and [[Uniform Resource Identifier|URI]] are too long, consider using the site's title, instead (i.e. instead of [http://www.fs.fed.us/r5/inyo/ www.fs.fed.us/r5/inyo/], use the more concise [http://www.fs.fed.us/r5/inyo/ Inyo National Forest].) See [[Help:URL#URLs in external links|URLs in external links]] for more detailed information.
===Finding coordinates for the locator dot===
{{Update||May 2007}}
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically designed for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
== Parameters ==
<table class="wikitable">
<th>Parameter</th>
<th>Mandatory or Optional</th>
<th>Default</th>
<th>Description</th>
<tr>
<th>width=</th>
<td>Optional</td>
<td>300</td>
<td> </td>
</tr>
<tr>
<th>name=</th>
<td>Mandatory</td>
<td>Undefined</td>
<td> </td>
</tr>
<tr>
<th>native_name=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>iucn_category=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>image=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>base_width=</th>
<td>Optional</td>
<td>288</td>
<td> </td>
</tr>
<tr>
<th>caption=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_x=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_y=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>location=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>nearest_city=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>coords=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>area=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>established=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_num=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_year=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>governing_body=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>world_heritage_site=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>website=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
</table>
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
</includeonly>
oogi0krfyv73rq7tuacqttfqgkj7qcb
667586
667584
2008-10-13T07:14:40Z
Wars
37910
ro
667586
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| width = 300
| native_name =
| iucn_category =
| image =
| base_width = 288
| caption =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| website =
}}
</pre>
* Each group of items above is '''optional''', except ''name''.
* Values (300 and 288) supplied above are the defaults coded into the template.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details,
* if ''coords'' is not supplied, ''lat_*'' and ''long_*'' are used to build a Coord template.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
* The ''website'' field should link to the official external website (or web page) for the protected area. The link should be specified so that "http" and other symbols aren't shown (i.e. instead of "[http://www.fs.fed.us/ http://www.fs.fed.us/]", it should appear as [http://www.fs.fed.us/ www.fs.fed.us]). If the [[domain name]] and [[Uniform Resource Identifier|URI]] are too long, consider using the site's title, instead (i.e. instead of [http://www.fs.fed.us/r5/inyo/ www.fs.fed.us/r5/inyo/], use the more concise [http://www.fs.fed.us/r5/inyo/ Inyo National Forest].) See [[Help:URL#URLs in external links|URLs in external links]] for more detailed information.
===Finding coordinates for the locator dot===
{{Update||May 2007}}
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically designed for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = [[October 1]] [[1890]]
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, [[1970]]
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
== Parameters ==
<table class="wikitable">
<th>Parameter</th>
<th>Mandatory or Optional</th>
<th>Default</th>
<th>Description</th>
<tr>
<th>width=</th>
<td>Optional</td>
<td>300</td>
<td> </td>
</tr>
<tr>
<th>name=</th>
<td>Mandatory</td>
<td>Undefined</td>
<td> </td>
</tr>
<tr>
<th>native_name=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>iucn_category=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>image=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>base_width=</th>
<td>Optional</td>
<td>288</td>
<td> </td>
</tr>
<tr>
<th>caption=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_x=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_y=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>location=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>nearest_city=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>coords=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>area=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>established=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_num=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_year=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>governing_body=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>world_heritage_site=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>website=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
</table>
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ro:Format:Infobox protected area]]
</includeonly>
9rf8fpc5bio2yjoktsandan5av3bhtp
667588
667586
2009-01-07T18:03:17Z
Lightmouse
43266
Units/dates/other using [[Project:AutoWikiBrowser|AWB]]
667588
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| width = 300
| native_name =
| iucn_category =
| image =
| base_width = 288
| caption =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| website =
}}
</pre>
* Each group of items above is '''optional''', except ''name''.
* Values (300 and 288) supplied above are the defaults coded into the template.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details,
* if ''coords'' is not supplied, ''lat_*'' and ''long_*'' are used to build a Coord template.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
* The ''website'' field should link to the official external website (or web page) for the protected area. The link should be specified so that "http" and other symbols aren't shown (i.e. instead of "[http://www.fs.fed.us/ http://www.fs.fed.us/]", it should appear as [http://www.fs.fed.us/ www.fs.fed.us]). If the [[domain name]] and [[Uniform Resource Identifier|URI]] are too long, consider using the site's title, instead (i.e. instead of [http://www.fs.fed.us/r5/inyo/ www.fs.fed.us/r5/inyo/], use the more concise [http://www.fs.fed.us/r5/inyo/ Inyo National Forest].) See [[Help:URL#URLs in external links|URLs in external links]] for more detailed information.
===Finding coordinates for the locator dot===
{{Update||May 2007}}
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically designed for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, 1970
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, 1970
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
== Parameters ==
<table class="wikitable">
<th>Parameter</th>
<th>Mandatory or Optional</th>
<th>Default</th>
<th>Description</th>
<tr>
<th>width=</th>
<td>Optional</td>
<td>300</td>
<td> </td>
</tr>
<tr>
<th>name=</th>
<td>Mandatory</td>
<td>Undefined</td>
<td> </td>
</tr>
<tr>
<th>native_name=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>iucn_category=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>image=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>base_width=</th>
<td>Optional</td>
<td>288</td>
<td> </td>
</tr>
<tr>
<th>caption=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_x=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_y=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>location=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>nearest_city=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>coords=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>area=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>established=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_num=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_year=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>governing_body=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>world_heritage_site=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>website=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
</table>
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ro:Format:Infobox protected area]]
</includeonly>
3rrd7vaoufh16s65nwjbdl6ob1bnf30
667591
667588
2009-02-08T11:25:59Z
Borgx
26923
+id
667591
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| width = 300
| native_name =
| iucn_category =
| image =
| base_width = 288
| caption =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| website =
}}
</pre>
* Each group of items above is '''optional''', except ''name''.
* Values (300 and 288) supplied above are the defaults coded into the template.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details,
* if ''coords'' is not supplied, ''lat_*'' and ''long_*'' are used to build a Coord template.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
* The ''website'' field should link to the official external website (or web page) for the protected area. The link should be specified so that "http" and other symbols aren't shown (i.e. instead of "[http://www.fs.fed.us/ http://www.fs.fed.us/]", it should appear as [http://www.fs.fed.us/ www.fs.fed.us]). If the [[domain name]] and [[Uniform Resource Identifier|URI]] are too long, consider using the site's title, instead (i.e. instead of [http://www.fs.fed.us/r5/inyo/ www.fs.fed.us/r5/inyo/], use the more concise [http://www.fs.fed.us/r5/inyo/ Inyo National Forest].) See [[Help:URL#URLs in external links|URLs in external links]] for more detailed information.
===Finding coordinates for the locator dot===
{{Update||May 2007}}
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically designed for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, 1970
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, 1970
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
== Parameters ==
<table class="wikitable">
<th>Parameter</th>
<th>Mandatory or Optional</th>
<th>Default</th>
<th>Description</th>
<tr>
<th>width=</th>
<td>Optional</td>
<td>300</td>
<td> </td>
</tr>
<tr>
<th>name=</th>
<td>Mandatory</td>
<td>Undefined</td>
<td> </td>
</tr>
<tr>
<th>native_name=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>iucn_category=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>image=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>base_width=</th>
<td>Optional</td>
<td>288</td>
<td> </td>
</tr>
<tr>
<th>caption=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_x=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_y=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>location=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>nearest_city=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>coords=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>area=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>established=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_num=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_year=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>governing_body=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>world_heritage_site=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>website=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
</table>
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ro:Format:Infobox protected area]]
</includeonly>
owunccqsdzkwck8pg297p58dmotx06e
667593
667591
2009-02-14T05:22:01Z
Bjankuloski06en~enwiki
14664
mk
667593
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| width = 300
| native_name =
| iucn_category =
| image =
| base_width = 288
| caption =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| website =
}}
</pre>
* Each group of items above is '''optional''', except ''name''.
* Values (300 and 288) supplied above are the defaults coded into the template.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details,
* if ''coords'' is not supplied, ''lat_*'' and ''long_*'' are used to build a Coord template.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
* The ''website'' field should link to the official external website (or web page) for the protected area. The link should be specified so that "http" and other symbols aren't shown (i.e. instead of "[http://www.fs.fed.us/ http://www.fs.fed.us/]", it should appear as [http://www.fs.fed.us/ www.fs.fed.us]). If the [[domain name]] and [[Uniform Resource Identifier|URI]] are too long, consider using the site's title, instead (i.e. instead of [http://www.fs.fed.us/r5/inyo/ www.fs.fed.us/r5/inyo/], use the more concise [http://www.fs.fed.us/r5/inyo/ Inyo National Forest].) See [[Help:URL#URLs in external links|URLs in external links]] for more detailed information.
===Finding coordinates for the locator dot===
{{Update||May 2007}}
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically designed for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, 1970
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, 1970
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
== Parameters ==
<table class="wikitable">
<th>Parameter</th>
<th>Mandatory or Optional</th>
<th>Default</th>
<th>Description</th>
<tr>
<th>width=</th>
<td>Optional</td>
<td>300</td>
<td> </td>
</tr>
<tr>
<th>name=</th>
<td>Mandatory</td>
<td>Undefined</td>
<td> </td>
</tr>
<tr>
<th>native_name=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>iucn_category=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>image=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>base_width=</th>
<td>Optional</td>
<td>288</td>
<td> </td>
</tr>
<tr>
<th>caption=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_x=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_y=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>location=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>nearest_city=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>coords=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>area=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>established=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_num=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_year=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>governing_body=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>world_heritage_site=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>website=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
</table>
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ro:Format:Infobox protected area]]
</includeonly>
i6y03idq2fcgj6ptnyx1a1efras5wsw
667596
667593
2009-03-22T19:51:38Z
Bekus
3053
667596
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
== Usage ==
To get started, you can simply copy this blank definition into your page, and fill in the data. Be sure to read the notes below it.
<pre>
{{Infobox Protected area
| name =
| width = 300
| native_name =
| iucn_category =
| image =
| base_width = 288
| caption =
| locator_x =
| locator_y =
| location =
| nearest_city =
| coords =
| lat_degrees =
| lat_minutes =
| lat_seconds =
| lat_direction =
| long_degrees =
| long_minutes =
| long_seconds =
| long_direction =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| website =
}}
</pre>
* Each group of items above is '''optional''', except ''name''.
* Values (300 and 288) supplied above are the defaults coded into the template.
** You may include an image with no caption, but a caption will not be shown if there is no image.
** To hide the locator dot, leave ''locator_x'' and ''locator_y'' blank
* The "IUCN category" '''must''' be one of the following (case-sensitive): Ia, Ib, II, III, IV, V, or VI — or it can be left blank.
* ''base_width'' is the width of the base map (default value 288)
* ''locator_x'' and ''locator_y'' are the number of pixels to offset the locator dot from the left and top edges of the base map. Note: there is a 3px y-axis difference between Internet Explorer and Firefox.
* Be flexible with the "Location" field. Depending on the scale of the protected area it could be very broad (example: "Northwest [[Alberta]], [[Canada]]), or could be a more specific place (examples: "[[St. Mary's County, Maryland]], [[United States|USA]]" or "[[Chartres]], [[France]]").
* The "Nearest city" is optional, but it is highly recommended if the "Location" field is not already an identifiable city. It could be a city with a major airport, or even a recognizable large gateway town where supplies and lodging are available.
* ''coords'' is conveniently used with {{tl|Coord}}; see that template for full details,
* if ''coords'' is not supplied, ''lat_*'' and ''long_*'' are used to build a Coord template.
* Wiki links [[]] are fine in any of the Infobox fields except IUCN category.
* Include the HTML comments before and following the template; they help inexperienced editors.
* ''Please spend some time at the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]] article and its [[Wikipedia talk:WikiProject Protected Areas|talk page]] for standards on presenting names and other data.''
* For backward compatibility, ''coords'' can be replaced with the 8 parameters ''lat_degrees, lat_minutes, lat_seconds, lat_direction, long_degrees, long_minutes, long_seconds, long_direction''. In this usage, {{tl|coord}}'s optional parameters can't be specified.
* The ''website'' field should link to the official external website (or web page) for the protected area. The link should be specified so that "http" and other symbols aren't shown (i.e. instead of "[http://www.fs.fed.us/ http://www.fs.fed.us/]", it should appear as [http://www.fs.fed.us/ www.fs.fed.us]). If the [[domain name]] and [[Uniform Resource Identifier|URI]] are too long, consider using the site's title, instead (i.e. instead of [http://www.fs.fed.us/r5/inyo/ www.fs.fed.us/r5/inyo/], use the more concise [http://www.fs.fed.us/r5/inyo/ Inyo National Forest].) See [[Help:URL#URLs in external links|URLs in external links]] for more detailed information.
===Finding coordinates for the locator dot===
{{Update||May 2007}}
There is a simple template tool named {{[[Template_talk:Locator grid|Locator grid]]}} which you can use to help with pinpointing the x and y coordinates for a locator dot. If you're using a popular locator map, you can test with the list of examples already included in the [[Template_talk:Locator_grid|usage and instructions page]]
== Sub-templates ==
This template calls the following sub-templates:
{| class="infobox" style="width:23.1em; font-size:90%; text-align:center;"
| {{Infobox protected area/IUCN Ia}}</tr>
| {{Infobox protected area/IUCN Ib}}</tr>
| {{Infobox protected area/IUCN II}}</tr>
| {{Infobox protected area/IUCN III}}</tr>
| {{Infobox protected area/IUCN IV}}</tr>
| {{Infobox protected area/IUCN V}}</tr>
| {{Infobox protected area/IUCN VI}}</tr>
|}
* Depending on the value of ''iucn_category'', one of the following templates is included to draw the colored header bar:
** {{tl|Infobox protected area/IUCN Ia}} ([[Template talk:Infobox protected area/IUCN Ia|talk]])
** {{tl|Infobox protected area/IUCN Ib}} ([[Template talk:Infobox protected area/IUCN Ib|talk]])
** {{tl|Infobox protected area/IUCN II}} ([[Template talk:Infobox protected area/IUCN II|talk]])
** {{tl|Infobox protected area/IUCN III}} ([[Template talk:Infobox protected area/IUCN III|talk]])
** {{tl|Infobox protected area/IUCN IV}} ([[Template talk:Infobox protected area/IUCN IV|talk]])
** {{tl|Infobox protected area/IUCN V}} ([[Template talk:Infobox protected area/IUCN V|talk]])
** {{tl|Infobox protected area/IUCN VI}} ([[Template talk:Infobox protected area/IUCN VI|talk]])
* {{tl|Superimpose}} ([[Template talk:Superimpose|talk]]) provides the ability to overlay the locator dot on the base image.
* {{tl|Infobox World Heritage Site (Protected area)}} is a subtemplate specifically designed for the inclusion of World Heritage Site information in the Protected area infobox. Its usage is as same as the [[Template:Infobox World Heritage Site]].
== Examples ==
===With locator map===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = US_Locator_Blank.svg
|caption =
|locator_x=20 |locator_y=84
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline,title}}
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With photograph and caption===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image = 100 1325.JPG
|caption = Yosemite Valley from Tunnel View
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
{{clear}}
===With no image===
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=inline}} <!-- title omitted to not mess up this page -->
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox Protected area
|name = Yosemite National Park
|iucn_category = Ib
|image =
|caption =
|locator_x= |locator_y=
|location = [[California]], [[United States]]
|nearest_city = [[Mariposa, California|Mariposa]]
|coords = {{coord|37|50|0|N|119|30|0|W|type:landmark_region:US_scale:300000|display=title,inline}}
|area = 761,266 acres (3,081 km²)
|established = October 1, 1890
|visitation_num = 3,280,911
|visitation_year = 2004
|governing_body = [[National Park Service]]
|world_heritage_site = 1984
|website = [http://www.nps.gov/yose/ www.nps.gov/yose/]
}}
</pre>
===With image and map===
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=inline|name=Dry Island Buffalo Jump Provincial Park}} <!-- title omitted to not mess up this page -->
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, 1970
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
<pre style="width:35em; overflow:auto; margin-right:0.5em; font-size:95%;">
{{Infobox_protected_area
| name = Dry Island Buffalo Jump Provincial Park<br>[[Image:Dry Island Provincial Park2.jpg|center|280px|Panoramic view]]
| iucn_category = III
| image = Canadian National Parks Location.png
| caption = Location of ''Dry Island Park'' in [[Canada]]
| locator_x = 64
| locator_y = 171
| location = [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]], [[Red Deer, Alberta|Red Deer]]
| coords = {{coord|51|56|10|N|112|57|41|W|type:landmark_region:CA_scale:100000|display=title,inline|name=Dry Island Buffalo Jump Provincial Park}}
| area = {{km2 to mi2|34.5|abbr=yes}}
| established = December 15, 1970
| visitation_num =
| visitation_year =
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| world_heritage_site =
}}
</pre>
{{clear}}
==Microformat==
{{UF-hcard-geo}}
== Parameters ==
<table class="wikitable">
<th>Parameter</th>
<th>Mandatory or Optional</th>
<th>Default</th>
<th>Description</th>
<tr>
<th>width=</th>
<td>Optional</td>
<td>300</td>
<td> </td>
</tr>
<tr>
<th>name=</th>
<td>Mandatory</td>
<td>Undefined</td>
<td> </td>
</tr>
<tr>
<th>native_name=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>iucn_category=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>image=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>base_width=</th>
<td>Optional</td>
<td>288</td>
<td> </td>
</tr>
<tr>
<th>caption=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_x=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>locator_y=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>location=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>nearest_city=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>coords=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>lat_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_degrees=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_minutes=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_seconds=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>long_direction=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>area=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>established=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_num=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>visitation_year=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>governing_body=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>world_heritage_site=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th>website=</th>
<td>Optional</td>
<td> </td>
<td> </td>
</tr>
<tr>
</table>
==See also==
*[http://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Infobox+protected+area%2FIUCN&namespace=10 IUCN subtemplates]
<includeonly>
<!--Categories-->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!--Other languages-->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
5uzxrq6lvvq77horly55ectcvvib6pu
667599
667596
2009-03-31T19:42:24Z
Droll
31361
replaced with updated version documentation
667599
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes fields that are of general use in building infoboxes. There are other fields listed below that are for compatibility with infoboxes that existed before this template was updated.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>,
|-
|<code>width</code> || Sets the overall width of the infobox. The default width is 305 pixels. This value value should seldom be changed.
|-
|<code>native_name</code> || The name of the protected place in the local language.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected place. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of a photographic file to be displayed. No special formatting is needed
|-
|<code>photo_caption</code> || A caption that will appear below the photograph if one is required.
|-
|<code>photo_width</code> || Specifies the desired width of the photo if it appears out of proportion to the rest of the infobox. The default value is 288 pixels. Photographs with a horizontal orientation (landscape mode) will generally display well at the default setting. A phonograph with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code>.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default width is 288 pixels. A display error will occur in compatibility mode when the following two fields have assigned values.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected place. Don't be too precise. County, state and country are good in the USA. If the place is in multiple counties just list the state and country.
|-
|<code>nearest_city</code> || Recommended if the city is not mentioned in the location field. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are none functional but this data can be entered in the Coord template. <code>type</code> should be <code>mountain</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>region</code> || A location code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>source</code> || Source of the data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected place. Usually in acres or square miles for US locations and square kilometres or hectares elsewhere. The {{tl|Convert}} template should be used.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>governing_body</code> || The agency or organization which owns or controls the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>website</code> || The [[Uniform Resource Locator|URL]] of the official website for the protected area. The <code>url</code> field below is recommended. This field should be formatted as an external link. For example: {{nowrap|<code><nowiki>[http://www.example.org/ www.example.org]</nowiki></code>}}.
|-
|<code>url</code> || The preferred method of entry. The full URL should be given with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
==== Compatibility fields ====
These fields files should not be used if the updated syntax for photographs and maps is used. It is strongly recommended that new infoboxes use the new field names although these fields function in the same way they did before the template was updated. Note that the compatibility coordinate fields are simple aliases for the new field names. There is now an attempt to standardize such names across templates to avoid confusion.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>image</code> || If <code>location_x</code> and <code>location_y</code> this field can be used to display a map. Without x and y it can be used to display and image.
|-
|<code>base_width</code> || Specifies the width of the image or map displayed. The default width is 288 pixels. A display error will occur when <code>location_x</code> and <code>location_y</code> have assigned values and the size of the map is changed.
|-
|<code>caption</code> || A caption that appears below the image or map if one is required.
|-
|<code>lat_degrees</code> || Alias for <code>lat_d</code> above.
|-
|<code>lat_minutes</code> || Alias for <code>lat_m</code> above.
|-
|<code>lat_seconds</code> || Alias for <code>lat_s</code> above.
|-
|<code>lat_direction</code> || Alias for <code>lat_NS</code> above.
|-
|<code>long_degrees</code> || Alias for <code>long_d</code> above.
|-
|<code>long_minutes</code> || Alias for <code>long_m</code> above.
|-
|<code>long_seconds</code> || Alias for <code>long_s</code> above.
|-
|<code>long_direction</code> || Alias for <code>long_EW</code> above.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The default width is 288 pixels but can be changed by setting <code>map_width</code> to a different value. The height of the map can most easily be determined by right clicking on a displayed map image and choosing <code>properties</code> from the drop down menu.
{{Infobox Protected area/sandbox
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
In this example the width of the map image is 288px in width and 187px in height. Yosemite National Park is located about 20px from the left of the image and 84px from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
Notice that changing the width of the map image will require new values for x and y to be calculated. This can be done using the following method.
: <code>new x = (new width * old x) / old width</code>
: <code>new y = (new height * old y) / old height</code>
{{clr}}
==== Version 2.0 method ====
If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then the this template will determine the marker location on the map using the geographical coordinates. A set of [[equirectangular projection]] map templates are used. This map type looks different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. In maps of smaller areas this difference is less critical.
Templates for use with this method can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. Select the template you wish to use and click on the template name. Information about the map will be displayed including the border coordinates of the map and the name of the area covered. The name displayed on the template page is the value used when specifying the value of the <code>map</code> field. A map template for the Alberta, Canada can be found at [[Template:Location map Canada Alberta]] and the name given on that page is "Canada Alberta". For example:
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to use appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered in [[decimal digit]] or using degrees, minutes and second. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div><div style="text-align: center; float: left; width:18.5em">Example dms</div>
<div style="text-align: center; float: left; width:18.5em">Example dm</div>
<div style="text-align: center; float: left; width:18.5em">Example d</div></div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; float: left; width:18.5em">Example unsigned dd</div>
<div style="text-align: center; float: left; width:18.5em">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area/sandbox
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area/sandbox
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the place-name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please see the microformat project.
For more information on microformats please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
nswyinzv9fv8vwub737qp6pjjh2to9a
667601
667599
2009-04-03T22:26:46Z
Droll
31361
small tweak
667601
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes fields that are of general use in building infoboxes. There are other fields listed below that are for compatibility with infoboxes that existed before this template was updated.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>,
|-
|<code>width</code> || Sets the overall width of the infobox. The default width is 305 pixels. This value value should seldom be changed.
|-
|<code>native_name</code> || The name of the protected place in the local language.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected place. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of a photographic file to be displayed. No special formatting is needed
|-
|<code>photo_caption</code> || A caption that will appear below the photograph if one is required.
|-
|<code>photo_width</code> || Specifies the desired width of the photo if it appears out of proportion to the rest of the infobox. The default value is 288 pixels. Photographs with a horizontal orientation (landscape mode) will generally display well at the default setting. A phonograph with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code>.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default width is 288 pixels but usually the map should be much smaller. A display error will occur in compatibility mode when the following two fields have assigned values.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected place. Don't be too precise. County, state and country are good in the USA. If the place is in multiple counties just list the state and country.
|-
|<code>nearest_city</code> || Recommended if the city is not mentioned in the location field. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are none functional but this data can be entered in the Coord template. <code>type</code> should be <code>mountain</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>region</code> || A location code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>source</code> || Source of the data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected place. Usually in acres or square miles for US locations and square kilometres or hectares elsewhere. The {{tl|Convert}} template should be used.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>governing_body</code> || The agency or organization which owns or controls the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>website</code> || The [[Uniform Resource Locator|URL]] of the official website for the protected area. The <code>url</code> field below is recommended. This field should be formatted as an external link. For example: {{nowrap|<code><nowiki>[http://www.example.org/ www.example.org]</nowiki></code>}}.
|-
|<code>url</code> || The preferred method of entry. The full URL should be given with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
==== Compatibility fields ====
These fields files should not be used if the updated syntax for photographs and maps is used. It is strongly recommended that new infoboxes use the new field names although these fields function in the same way they did before the template was updated. Note that the compatibility coordinate fields are simple aliases for the new field names. There is now an attempt to standardize such names across templates to avoid confusion.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>image</code> || If <code>location_x</code> and <code>location_y</code> this field can be used to display a map. Without x and y it can be used to display and image.
|-
|<code>base_width</code> || Specifies the width of the image or map displayed. The default width is 288 pixels. A display error will occur when <code>location_x</code> and <code>location_y</code> have assigned values and the size of the map is changed.
|-
|<code>caption</code> || A caption that appears below the image or map if one is required.
|-
|<code>lat_degrees</code> || Alias for <code>lat_d</code> above.
|-
|<code>lat_minutes</code> || Alias for <code>lat_m</code> above.
|-
|<code>lat_seconds</code> || Alias for <code>lat_s</code> above.
|-
|<code>lat_direction</code> || Alias for <code>lat_NS</code> above.
|-
|<code>long_degrees</code> || Alias for <code>long_d</code> above.
|-
|<code>long_minutes</code> || Alias for <code>long_m</code> above.
|-
|<code>long_seconds</code> || Alias for <code>long_s</code> above.
|-
|<code>long_direction</code> || Alias for <code>long_EW</code> above.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The default width is 288 pixels but can be changed by setting <code>map_width</code> to a different value. The height of the map can most easily be determined by right clicking on a displayed map image and choosing <code>properties</code> from the drop down menu.
{{Infobox Protected area/sandbox
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
In this example the width of the map image is 288px in width and 187px in height. Yosemite National Park is located about 20px from the left of the image and 84px from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
Notice that changing the width of the map image will require new values for x and y to be calculated. This can be done using the following method.
: <code>new x = (new width * old x) / old width</code>
: <code>new y = (new height * old y) / old height</code>
{{clr}}
==== Version 2.0 method ====
If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then the this template will determine the marker location on the map using the geographical coordinates. A set of [[equirectangular projection]] map templates are used. This map type looks different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. In maps of smaller areas this difference is less critical.
Templates for use with this method can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. Select the template you wish to use and click on the template name. Information about the map will be displayed including the border coordinates of the map and the name of the area covered. The name displayed on the template page is the value used when specifying the value of the <code>map</code> field. A map template for the Alberta, Canada can be found at [[Template:Location map Canada Alberta]] and the name given on that page is "Canada Alberta". For example:
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to use appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered in [[decimal digit]] or using degrees, minutes and second. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div><div style="text-align: center; float: left; width:18.5em">Example dms</div>
<div style="text-align: center; float: left; width:18.5em">Example dm</div>
<div style="text-align: center; float: left; width:18.5em">Example d</div></div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; float: left; width:18.5em">Example unsigned dd</div>
<div style="text-align: center; float: left; width:18.5em">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area/sandbox
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area/sandbox
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the place-name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please see the microformat project.
For more information on microformats please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
t12zbzp0on0n2kie3wvqgbfjmdyw85n
667602
667601
2009-04-06T08:34:04Z
Droll
31361
/* Template blank */ tweak
667602
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes fields that are of general use in building infoboxes. There are other fields listed below that are for compatibility with infoboxes that existed before this template was updated.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>,
|-
|<code>width</code> || Sets the overall width of the infobox. The default width is 305 pixels. This value value should seldom be changed.
|-
|<code>native_name</code> || The name of the protected place in the local language.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected place. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of a photographic file to be displayed. No special formatting is needed
|-
|<code>photo_caption</code> || A caption that will appear below the photograph if one is required.
|-
|<code>photo_width</code> || Specifies the desired width of the photo if it appears out of proportion to the rest of the infobox. The default value is 288 pixels. Photographs with a horizontal orientation (landscape mode) will generally display well at the default setting. A phonograph with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code>.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default width is 288 pixels but usually the map should be much smaller. A display error will occur in compatibility mode when the following two fields have assigned values.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected place. Don't be too precise. County, state and country are good in the USA. If the place is in multiple counties just list the state and country.
|-
|<code>nearest_city</code> || Recommended if the city is not mentioned in the location field. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are none functional but this data can be entered in the Coord template. <code>type</code> should be <code>mountain</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>region</code> || A location code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>source</code> || Source of the data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected place. Usually in acres or square miles for US locations and square kilometres or hectares elsewhere. The {{tl|Convert}} template should be used.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>governing_body</code> || The agency or organization which owns or controls the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>website</code> || The [[Uniform Resource Locator|URL]] of the official website for the protected area. The <code>url</code> field below is recommended. This field should be formatted as an external link. For example: {{nowrap|<code><nowiki>[http://www.example.org/ www.example.org]</nowiki></code>}}.
|-
|<code>url</code> || The preferred method of entry. The full URL should be given with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
==== Compatibility fields ====
These fields files should not be used if the updated syntax for photographs and maps is used. It is strongly recommended that new infoboxes use the new field names although these fields function in the same way they did before the template was updated. Note that the compatibility coordinate fields are simple aliases for the new field names. There is now an attempt to standardize such names across templates to avoid confusion.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>image</code> || If <code>location_x</code> and <code>location_y</code> this field can be used to display a map. Without x and y it can be used to display and image.
|-
|<code>base_width</code> || Specifies the width of the image or map displayed. The default width is 288 pixels. A display error will occur when <code>location_x</code> and <code>location_y</code> have assigned values and the size of the map is changed.
|-
|<code>caption</code> || A caption that appears below the image or map if one is required.
|-
|<code>lat_degrees</code> || Alias for <code>lat_d</code> above.
|-
|<code>lat_minutes</code> || Alias for <code>lat_m</code> above.
|-
|<code>lat_seconds</code> || Alias for <code>lat_s</code> above.
|-
|<code>lat_direction</code> || Alias for <code>lat_NS</code> above.
|-
|<code>long_degrees</code> || Alias for <code>long_d</code> above.
|-
|<code>long_minutes</code> || Alias for <code>long_m</code> above.
|-
|<code>long_seconds</code> || Alias for <code>long_s</code> above.
|-
|<code>long_direction</code> || Alias for <code>long_EW</code> above.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The default width is 288 pixels but can be changed by setting <code>map_width</code> to a different value. The height of the map can most easily be determined by right clicking on a displayed map image and choosing <code>properties</code> from the drop down menu.
{{Infobox Protected area/sandbox
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
In this example the width of the map image is 288px in width and 187px in height. Yosemite National Park is located about 20px from the left of the image and 84px from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
Notice that changing the width of the map image will require new values for x and y to be calculated. This can be done using the following method.
: <code>new x = (new width * old x) / old width</code>
: <code>new y = (new height * old y) / old height</code>
{{clr}}
==== Version 2.0 method ====
If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then the this template will determine the marker location on the map using the geographical coordinates. A set of [[equirectangular projection]] map templates are used. This map type looks different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. In maps of smaller areas this difference is less critical.
Templates for use with this method can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. Select the template you wish to use and click on the template name. Information about the map will be displayed including the border coordinates of the map and the name of the area covered. The name displayed on the template page is the value used when specifying the value of the <code>map</code> field. A map template for the Alberta, Canada can be found at [[Template:Location map Canada Alberta]] and the name given on that page is "Canada Alberta". For example:
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to use appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered in [[decimal digit]] or using degrees, minutes and second. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div><div style="text-align: center; float: left; width:18.5em">Example dms</div>
<div style="text-align: center; float: left; width:18.5em">Example dm</div>
<div style="text-align: center; float: left; width:18.5em">Example d</div></div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; float: left; width:18.5em">Example unsigned dd</div>
<div style="text-align: center; float: left; width:18.5em">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area/sandbox
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area/sandbox
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the place-name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please see the microformat project.
For more information on microformats please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
gjgzszten3260e03vd6ro00x32bknmr
667603
667602
2009-04-09T08:42:31Z
Droll
31361
/* Version 2.0 fields */ little tweak
667603
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes fields that are of general use in building infoboxes. There are other fields listed below that are for compatibility with infoboxes that existed before this template was updated.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>,
|-
<!-- |<code>width</code> || Sets the overall width of the infobox. The default width is 305 pixels. This value value should seldom be changed.
|- -->
|<code>native_name</code> || The name of the protected place in the local language.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected place. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of a photographic file to be displayed. No special formatting is needed
|-
|<code>photo_caption</code> || A caption that will appear below the photograph if one is required.
|-
|<code>photo_width</code> || Specifies the desired width of the photo if it appears out of proportion to the rest of the infobox. The default value is 288 pixels. Photographs with a horizontal orientation (landscape mode) will generally display well at the default setting. A phonograph with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code>.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default width is 288 pixels but usually the map should be much smaller. A display error will occur in compatibility mode when the following two fields have assigned values.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected place. Don't be too precise. County, state and country are good in the USA. If the place is in multiple counties just list the state and country.
|-
|<code>nearest_city</code> || Recommended if the city is not mentioned in the location field. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are none functional but this data can be entered in the Coord template. <code>type</code> should be <code>mountain</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>region</code> || A location code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>source</code> || Source of the data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected place. Usually in acres or square miles for US locations and square kilometres or hectares elsewhere. The {{tl|Convert}} template should be used.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>governing_body</code> || The agency or organization which owns or controls the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>website</code> || The [[Uniform Resource Locator|URL]] of the official website for the protected area. The <code>url</code> field below is recommended. This field should be formatted as an external link. For example: {{nowrap|<code><nowiki>[http://www.example.org/ www.example.org]</nowiki></code>}}.
|-
|<code>url</code> || The preferred method of entry. The full URL should be given with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
==== Compatibility fields ====
These fields files should not be used if the updated syntax for photographs and maps is used. It is strongly recommended that new infoboxes use the new field names although these fields function in the same way they did before the template was updated. Note that the compatibility coordinate fields are simple aliases for the new field names. There is now an attempt to standardize such names across templates to avoid confusion.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>image</code> || If <code>location_x</code> and <code>location_y</code> this field can be used to display a map. Without x and y it can be used to display and image.
|-
|<code>base_width</code> || Specifies the width of the image or map displayed. The default width is 288 pixels. A display error will occur when <code>location_x</code> and <code>location_y</code> have assigned values and the size of the map is changed.
|-
|<code>caption</code> || A caption that appears below the image or map if one is required.
|-
|<code>lat_degrees</code> || Alias for <code>lat_d</code> above.
|-
|<code>lat_minutes</code> || Alias for <code>lat_m</code> above.
|-
|<code>lat_seconds</code> || Alias for <code>lat_s</code> above.
|-
|<code>lat_direction</code> || Alias for <code>lat_NS</code> above.
|-
|<code>long_degrees</code> || Alias for <code>long_d</code> above.
|-
|<code>long_minutes</code> || Alias for <code>long_m</code> above.
|-
|<code>long_seconds</code> || Alias for <code>long_s</code> above.
|-
|<code>long_direction</code> || Alias for <code>long_EW</code> above.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The default width is 288 pixels but can be changed by setting <code>map_width</code> to a different value. The height of the map can most easily be determined by right clicking on a displayed map image and choosing <code>properties</code> from the drop down menu.
{{Infobox Protected area/sandbox
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
In this example the width of the map image is 288px in width and 187px in height. Yosemite National Park is located about 20px from the left of the image and 84px from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
Notice that changing the width of the map image will require new values for x and y to be calculated. This can be done using the following method.
: <code>new x = (new width * old x) / old width</code>
: <code>new y = (new height * old y) / old height</code>
{{clr}}
==== Version 2.0 method ====
If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then the this template will determine the marker location on the map using the geographical coordinates. A set of [[equirectangular projection]] map templates are used. This map type looks different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. In maps of smaller areas this difference is less critical.
Templates for use with this method can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. Select the template you wish to use and click on the template name. Information about the map will be displayed including the border coordinates of the map and the name of the area covered. The name displayed on the template page is the value used when specifying the value of the <code>map</code> field. A map template for the Alberta, Canada can be found at [[Template:Location map Canada Alberta]] and the name given on that page is "Canada Alberta". For example:
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to use appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered in [[decimal digit]] or using degrees, minutes and second. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div><div style="text-align: center; float: left; width:18.5em">Example dms</div>
<div style="text-align: center; float: left; width:18.5em">Example dm</div>
<div style="text-align: center; float: left; width:18.5em">Example d</div></div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; float: left; width:18.5em">Example unsigned dd</div>
<div style="text-align: center; float: left; width:18.5em">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area/sandbox
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area/sandbox
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the place-name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please see the microformat project.
For more information on microformats please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
e0gc3nr8v79p3ach1sofgnouqztw43w
667604
667603
2009-04-10T07:15:56Z
Droll
31361
/* Version 2.0 fields */ documented visitation_ref field
667604
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes fields that are of general use in building infoboxes. There are other fields listed below that are for compatibility with infoboxes that existed before this template was updated.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>,
|-
<!-- |<code>width</code> || Sets the overall width of the infobox. The default width is 305 pixels. This value value should seldom be changed.
|- -->
|<code>native_name</code> || The name of the protected place in the local language.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected place. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of a photographic file to be displayed. No special formatting is needed
|-
|<code>photo_caption</code> || A caption that will appear below the photograph if one is required.
|-
|<code>photo_width</code> || Specifies the desired width of the photo if it appears out of proportion to the rest of the infobox. The default value is 288 pixels. Photographs with a horizontal orientation (landscape mode) will generally display well at the default setting. A phonograph with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code>.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default width is 288 pixels but usually the map should be much smaller. A display error will occur in compatibility mode when the following two fields have assigned values.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected place. Don't be too precise. County, state and country are good in the USA. If the place is in multiple counties just list the state and country.
|-
|<code>nearest_city</code> || Recommended if the city is not mentioned in the location field. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are none functional but this data can be entered in the Coord template. <code>type</code> should be <code>mountain</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>region</code> || A location code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>source</code> || Source of the data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected place. Usually in acres or square miles for US locations and square kilometres or hectares elsewhere. The {{tl|Convert}} template should be used.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which owns or controls the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>website</code> || The [[Uniform Resource Locator|URL]] of the official website for the protected area. The <code>url</code> field below is recommended. This field should be formatted as an external link. For example: {{nowrap|<code><nowiki>[http://www.example.org/ www.example.org]</nowiki></code>}}.
|-
|<code>url</code> || The preferred method of entry. The full URL should be given with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
==== Compatibility fields ====
These fields files should not be used if the updated syntax for photographs and maps is used. It is strongly recommended that new infoboxes use the new field names although these fields function in the same way they did before the template was updated. Note that the compatibility coordinate fields are simple aliases for the new field names. There is now an attempt to standardize such names across templates to avoid confusion.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>image</code> || If <code>location_x</code> and <code>location_y</code> this field can be used to display a map. Without x and y it can be used to display and image.
|-
|<code>base_width</code> || Specifies the width of the image or map displayed. The default width is 288 pixels. A display error will occur when <code>location_x</code> and <code>location_y</code> have assigned values and the size of the map is changed.
|-
|<code>caption</code> || A caption that appears below the image or map if one is required.
|-
|<code>lat_degrees</code> || Alias for <code>lat_d</code> above.
|-
|<code>lat_minutes</code> || Alias for <code>lat_m</code> above.
|-
|<code>lat_seconds</code> || Alias for <code>lat_s</code> above.
|-
|<code>lat_direction</code> || Alias for <code>lat_NS</code> above.
|-
|<code>long_degrees</code> || Alias for <code>long_d</code> above.
|-
|<code>long_minutes</code> || Alias for <code>long_m</code> above.
|-
|<code>long_seconds</code> || Alias for <code>long_s</code> above.
|-
|<code>long_direction</code> || Alias for <code>long_EW</code> above.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The default width is 288 pixels but can be changed by setting <code>map_width</code> to a different value. The height of the map can most easily be determined by right clicking on a displayed map image and choosing <code>properties</code> from the drop down menu.
{{Infobox Protected area/sandbox
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
In this example the width of the map image is 288px in width and 187px in height. Yosemite National Park is located about 20px from the left of the image and 84px from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
Notice that changing the width of the map image will require new values for x and y to be calculated. This can be done using the following method.
: <code>new x = (new width * old x) / old width</code>
: <code>new y = (new height * old y) / old height</code>
{{clr}}
==== Version 2.0 method ====
If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then the this template will determine the marker location on the map using the geographical coordinates. A set of [[equirectangular projection]] map templates are used. This map type looks different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. In maps of smaller areas this difference is less critical.
Templates for use with this method can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. Select the template you wish to use and click on the template name. Information about the map will be displayed including the border coordinates of the map and the name of the area covered. The name displayed on the template page is the value used when specifying the value of the <code>map</code> field. A map template for the Alberta, Canada can be found at [[Template:Location map Canada Alberta]] and the name given on that page is "Canada Alberta". For example:
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to use appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered in [[decimal digit]] or using degrees, minutes and second. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div><div style="text-align: center; float: left; width:18.5em">Example dms</div>
<div style="text-align: center; float: left; width:18.5em">Example dm</div>
<div style="text-align: center; float: left; width:18.5em">Example d</div></div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; float: left; width:18.5em">Example unsigned dd</div>
<div style="text-align: center; float: left; width:18.5em">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area/sandbox
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area/sandbox
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the place-name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please see the microformat project.
For more information on microformats please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
iwrj1p7zw8v2au5erlk9166chwwmyyu
667605
667604
2009-04-10T21:36:18Z
Droll
31361
documented "type" field
667605
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes fields that are of general use in building infoboxes. There are other fields listed below that are for compatibility with infoboxes that existed before this template was updated.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>,
|-
<!-- |<code>width</code> || Sets the overall width of the infobox. The default width is 305 pixels. This value value should seldom be changed.
|- -->
|<code>native_name</code> || The name of the protected place in the local language.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected place. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of a photographic file to be displayed. No special formatting is needed
|-
|<code>photo_caption</code> || A caption that will appear below the photograph if one is required.
|-
|<code>photo_width</code> || Specifies the desired width of the photo if it appears out of proportion to the rest of the infobox. The default value is 288 pixels. Photographs with a horizontal orientation (landscape mode) will generally display well at the default setting. A phonograph with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code>.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default width is 288 pixels but usually the map should be much smaller. A display error will occur in compatibility mode when the following two fields have assigned values.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected place. Don't be too precise. County, state and country are good in the USA. If the place is in multiple counties just list the state and country.
|-
|<code>nearest_city</code> || Recommended if the city is not mentioned in the location field. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are none functional but this data can be entered in the Coord template. <code>type</code> should be <code>mountain</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of location. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A location code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected place. Usually in acres or square miles for US locations and square kilometres or hectares elsewhere. The {{tl|Convert}} template should be used.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which owns or controls the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>website</code> || The [[Uniform Resource Locator|URL]] of the official website for the protected area. The <code>url</code> field below is recommended. This field should be formatted as an external link. For example: {{nowrap|<code><nowiki>[http://www.example.org/ www.example.org]</nowiki></code>}}.
|-
|<code>url</code> || The preferred method of entry. The full URL should be given with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
==== Compatibility fields ====
These fields files should not be used if the updated syntax for photographs and maps is used. It is strongly recommended that new infoboxes use the new field names although these fields function in the same way they did before the template was updated. Note that the compatibility coordinate fields are simple aliases for the new field names. There is now an attempt to standardize such names across templates to avoid confusion.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>image</code> || If <code>location_x</code> and <code>location_y</code> this field can be used to display a map. Without x and y it can be used to display and image.
|-
|<code>base_width</code> || Specifies the width of the image or map displayed. The default width is 288 pixels. A display error will occur when <code>location_x</code> and <code>location_y</code> have assigned values and the size of the map is changed.
|-
|<code>caption</code> || A caption that appears below the image or map if one is required.
|-
|<code>lat_degrees</code> || Alias for <code>lat_d</code> above.
|-
|<code>lat_minutes</code> || Alias for <code>lat_m</code> above.
|-
|<code>lat_seconds</code> || Alias for <code>lat_s</code> above.
|-
|<code>lat_direction</code> || Alias for <code>lat_NS</code> above.
|-
|<code>long_degrees</code> || Alias for <code>long_d</code> above.
|-
|<code>long_minutes</code> || Alias for <code>long_m</code> above.
|-
|<code>long_seconds</code> || Alias for <code>long_s</code> above.
|-
|<code>long_direction</code> || Alias for <code>long_EW</code> above.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The default width is 288 pixels but can be changed by setting <code>map_width</code> to a different value. The height of the map can most easily be determined by right clicking on a displayed map image and choosing <code>properties</code> from the drop down menu.
{{Infobox Protected area/sandbox
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
In this example the width of the map image is 288px in width and 187px in height. Yosemite National Park is located about 20px from the left of the image and 84px from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
Notice that changing the width of the map image will require new values for x and y to be calculated. This can be done using the following method.
: <code>new x = (new width * old x) / old width</code>
: <code>new y = (new height * old y) / old height</code>
{{clr}}
==== Version 2.0 method ====
If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then the this template will determine the marker location on the map using the geographical coordinates. A set of [[equirectangular projection]] map templates are used. This map type looks different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. In maps of smaller areas this difference is less critical.
Templates for use with this method can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. Select the template you wish to use and click on the template name. Information about the map will be displayed including the border coordinates of the map and the name of the area covered. The name displayed on the template page is the value used when specifying the value of the <code>map</code> field. A map template for the Alberta, Canada can be found at [[Template:Location map Canada Alberta]] and the name given on that page is "Canada Alberta". For example:
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to use appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered in [[decimal digit]] or using degrees, minutes and second. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div><div style="text-align: center; float: left; width:18.5em">Example dms</div>
<div style="text-align: center; float: left; width:18.5em">Example dm</div>
<div style="text-align: center; float: left; width:18.5em">Example d</div></div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; float: left; width:18.5em">Example unsigned dd</div>
<div style="text-align: center; float: left; width:18.5em">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area/sandbox
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area/sandbox
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area/sandbox
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the place-name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please see the microformat project.
For more information on microformats please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
8615kiu7slo2h4kt5yj5c7vbnrxmd1l
667606
667605
2009-04-13T00:37:57Z
Droll
31361
cleanup
667606
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes fields that are of general use in building infoboxes. There are other fields listed below that are for compatibility with infoboxes that existed before this template was updated.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>,
|-
<!-- |<code>width</code> || Sets the overall width of the infobox. The default width is 305 pixels. This value value should seldom be changed.
|- -->
|<code>native_name</code> || The name of the protected place in the local language.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected place. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of a photographic file to be displayed. No special formatting is needed
|-
|<code>photo_caption</code> || A caption that will appear below the photograph if one is required.
|-
|<code>photo_width</code> || Specifies the desired width of the photo if it appears out of proportion to the rest of the infobox. The default value is 288 pixels. Photographs with a horizontal orientation (landscape mode) will generally display well at the default setting. A phonograph with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code>.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default width is 288 pixels but usually the map should be much smaller. A display error will occur in compatibility mode when the following two fields have assigned values.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected place. Don't be too precise. County, state and country are good in the USA. If the place is in multiple counties just list the state and country.
|-
|<code>nearest_city</code> || Recommended if the city is not mentioned in the location field. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are none functional but this data can be entered in the Coord template. <code>type</code> should be <code>mountain</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of location. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A location code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected place. Usually in acres or square miles for US locations and square kilometres or hectares elsewhere. The {{tl|Convert}} template should be used.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which owns or controls the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>website</code> || The [[Uniform Resource Locator|URL]] of the official website for the protected area. The <code>url</code> field below is recommended. This field should be formatted as an external link. For example: {{nowrap|<code><nowiki>[http://www.example.org/ www.example.org]</nowiki></code>}}.
|-
|<code>url</code> || The preferred method of entry. The full URL should be given with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
==== Compatibility fields ====
These fields files should not be used if the updated syntax for photographs and maps is used. It is strongly recommended that new infoboxes use the new field names although these fields function in the same way they did before the template was updated. Note that the compatibility coordinate fields are simple aliases for the new field names. There is now an attempt to standardize such names across templates to avoid confusion.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>image</code> || If <code>location_x</code> and <code>location_y</code> this field can be used to display a map. Without x and y it can be used to display and image.
|-
|<code>base_width</code> || Specifies the width of the image or map displayed. The default width is 288 pixels. A display error will occur when <code>location_x</code> and <code>location_y</code> have assigned values and the size of the map is changed.
|-
|<code>caption</code> || A caption that appears below the image or map if one is required.
|-
|<code>lat_degrees</code> || Alias for <code>lat_d</code> above.
|-
|<code>lat_minutes</code> || Alias for <code>lat_m</code> above.
|-
|<code>lat_seconds</code> || Alias for <code>lat_s</code> above.
|-
|<code>lat_direction</code> || Alias for <code>lat_NS</code> above.
|-
|<code>long_degrees</code> || Alias for <code>long_d</code> above.
|-
|<code>long_minutes</code> || Alias for <code>long_m</code> above.
|-
|<code>long_seconds</code> || Alias for <code>long_s</code> above.
|-
|<code>long_direction</code> || Alias for <code>long_EW</code> above.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The default width is 288 pixels but can be changed by setting <code>map_width</code> to a different value. The height of the map can most easily be determined by right clicking on a displayed map image and choosing <code>properties</code> from the drop down menu.
{{Infobox Protected area
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_width = 288
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
In this example the width of the map image is 288px in width and 187px in height. Yosemite National Park is located about 20px from the left of the image and 84px from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
Notice that changing the width of the map image will require new values for x and y to be calculated. This can be done using the following method.
: <code>new x = (new width * old x) / old width</code>
: <code>new y = (new height * old y) / old height</code>
{{clr}}
==== Version 2.0 method ====
If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then the this template will determine the marker location on the map using the geographical coordinates. A set of [[equirectangular projection]] map templates are used. This map type looks different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. In maps of smaller areas this difference is less critical.
Templates for use with this method can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. Select the template you wish to use and click on the template name. Information about the map will be displayed including the border coordinates of the map and the name of the area covered. The name displayed on the template page is the value used when specifying the value of the <code>map</code> field. A map template for the Alberta, Canada can be found at [[Template:Location map Canada Alberta]] and the name given on that page is "Canada Alberta". For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to use appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered in [[decimal digit]] or using degrees, minutes and second. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div><div style="text-align: center; float: left; width:18.5em">Example dms</div>
<div style="text-align: center; float: left; width:18.5em">Example dm</div>
<div style="text-align: center; float: left; width:18.5em">Example d</div></div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; float: left; width:18.5em">Example unsigned dd</div>
<div style="text-align: center; float: left; width:18.5em">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the place-name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please see the microformat project.
For more information on microformats please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
6uvc6eh7im0li1dpvfrfetrvldc7yot
667607
667606
2009-04-15T19:56:45Z
Droll
31361
working save
667607
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes fields that are of general use in building infoboxes. There are other fields listed below that are for compatibility with infoboxes that existed before this template was updated.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
<!-- |<code>width</code> || Sets the overall width of the infobox. The default width is 305 pixels. This value value should seldom be changed.
|- -->
|<code>native_name</code> || The name of the protected area in the local language.
|-
|<code>alt_name</code> || For use when for languages such as Japanese. The native name will be displayed in the normal font.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of a image file to be displayed. No special formatting is needed
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>photo_width</code> || Specifies the desired width of the photo if it appears out of proportion to the rest of the infobox. The default and maximum value is 283 pixels. Photographs with a horizontal orientation (landscape mode) will generally display well at the default setting. A phonograph with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code>.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is in multiple counties just list the state and country.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city in which case the city should be mentioned in the location field. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. <code>type</code> should be <code>landmark</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A location code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and square hectares or kilometres elsewhere. The {{tl|Convert}} template should be used.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which owns or controls the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>website</code> || The [[Uniform Resource Locator|URL]] of the official website for the protected area. The <code>url</code> field below is recommended. This field should be formatted as an external link. For example: {{nowrap|<code><nowiki>[http://www.example.org/ www.example.org]</nowiki></code>}}.
|-
|<code>url</code> || The preferred method of entry. The full URL should be given with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s based on a map with a width of 288 pixels that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but can be changed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Version 2.0 method ====
If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then the the template will determine the marker location on the map using the geographical coordinates. A set of [[equirectangular projection]] map templates are used. For large scale maps such as and large country this type of map looks different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical.
Templates for use with this method can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify in the template is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. The value entered will be <code>Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
== Coordinate syntax ==
Coordinates can be entered in [[decimal digit]] or using degrees, minutes and second. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div><div style="text-align: center; float: left; width:18.5em">Example dms</div>
<div style="text-align: center; float: left; width:18.5em">Example dm</div>
<div style="text-align: center; float: left; width:18.5em">Example d</div></div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; float: left; width:18.5em">Example unsigned dd</div>
<div style="text-align: center; float: left; width:18.5em">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please see the microformat project.
For more information on microformats please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
enuaujev4hdzi0f87k6nli3r7sq78e5
667608
667607
2009-04-15T20:29:36Z
Droll
31361
/* Version 2.0 fields */ working save
667608
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>native_name</code> || The name of the protected area in the local language.
|-
|<code>alt_name</code> || For use when specifying the native name in a language such as Japanese. The name will be displayed in the normal font.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Specifies the width of the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. In most cases <code>type</code> should be <code>landmark</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A location code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is strongly recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s based on a map with a width of 288 pixels that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but can be changed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Version 2.0 method ====
If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then the the template will determine the marker location on the map using the geographical coordinates. A set of [[equirectangular projection]] map templates are used. For large scale maps such as and large country this type of map looks different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical.
Templates for use with this method can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify in the template is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. The value entered will be <code>Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
== Coordinate syntax ==
Coordinates can be entered in [[decimal digit]] or using degrees, minutes and second. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div><div style="text-align: center; float: left; width:18.5em">Example dms</div>
<div style="text-align: center; float: left; width:18.5em">Example dm</div>
<div style="text-align: center; float: left; width:18.5em">Example d</div></div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; float: left; width:18.5em">Example unsigned dd</div>
<div style="text-align: center; float: left; width:18.5em">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please see the microformat project.
For more information on microformats please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
fi7v0jg59rab4t2n11tglg3cugubfn8
667609
667608
2009-04-16T01:31:24Z
Droll
31361
/* Version 2.0 fields */ small tweak
667609
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>native_name</code> || The name of the protected area in the local language.
|-
|<code>alt_name</code> || For use when specifying the native name in a language such as Japanese. The name will be displayed in the normal font.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Specifies the width of the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. In most cases <code>type</code> should be <code>landmark</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is strongly recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s based on a map with a width of 288 pixels that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but can be changed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Version 2.0 method ====
If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then the the template will determine the marker location on the map using the geographical coordinates. A set of [[equirectangular projection]] map templates are used. For large scale maps such as and large country this type of map looks different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical.
Templates for use with this method can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify in the template is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. The value entered will be <code>Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
== Coordinate syntax ==
Coordinates can be entered in [[decimal digit]] or using degrees, minutes and second. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div><div style="text-align: center; float: left; width:18.5em">Example dms</div>
<div style="text-align: center; float: left; width:18.5em">Example dm</div>
<div style="text-align: center; float: left; width:18.5em">Example d</div></div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; float: left; width:18.5em">Example unsigned dd</div>
<div style="text-align: center; float: left; width:18.5em">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please see the microformat project.
For more information on microformats please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
isgdpq1go4xoor887v1oqpl0d0d1uhn
667610
667609
2009-04-16T01:57:42Z
Droll
31361
/* Version 2.0 method */ copyedit
667610
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>native_name</code> || The name of the protected area in the local language.
|-
|<code>alt_name</code> || For use when specifying the native name in a language such as Japanese. The name will be displayed in the normal font.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Specifies the width of the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. In most cases <code>type</code> should be <code>landmark</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is strongly recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s based on a map with a width of 288 pixels that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but can be changed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Version 2.0 method ====
Any image of a map showing the location of the protected area can be used or a marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then a marker can be superimposed on a map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. These large scale maps look different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical.
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered in [[decimal digit]] or using degrees, minutes and second. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div><div style="text-align: center; float: left; width:18.5em">Example dms</div>
<div style="text-align: center; float: left; width:18.5em">Example dm</div>
<div style="text-align: center; float: left; width:18.5em">Example d</div></div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; float: left; width:18.5em">Example unsigned dd</div>
<div style="text-align: center; float: left; width:18.5em">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please see the microformat project.
For more information on microformats please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
eqimmlb5c6awjaumpjjck37qpzftfj0
667611
667610
2009-04-16T02:08:35Z
Droll
31361
/* Coordinate syntax */ cleanup
667611
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>native_name</code> || The name of the protected area in the local language.
|-
|<code>alt_name</code> || For use when specifying the native name in a language such as Japanese. The name will be displayed in the normal font.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Specifies the width of the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. In most cases <code>type</code> should be <code>landmark</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is strongly recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s based on a map with a width of 288 pixels that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but can be changed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Version 2.0 method ====
Any image of a map showing the location of the protected area can be used or a marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then a marker can be superimposed on a map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. These large scale maps look different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical.
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please see the microformat project.
For more information on microformats please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
r50dm0vapmk48gfm81y47b8yqwys2oy
667612
667611
2009-04-16T02:13:22Z
Droll
31361
/* Microformat */ cleanup
667612
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>native_name</code> || The name of the protected area in the local language.
|-
|<code>alt_name</code> || For use when specifying the native name in a language such as Japanese. The name will be displayed in the normal font.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Specifies the width of the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. In most cases <code>type</code> should be <code>landmark</code> and <code>display</code> should be <code>inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#With photograph only|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is strongly recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s based on a map with a width of 288 pixels that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but can be changed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Version 2.0 method ====
Any image of a map showing the location of the protected area can be used or a marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then a marker can be superimposed on a map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. These large scale maps look different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical.
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
o763xse7srkom0o7wnlk0oy85tmvvrs
667615
667612
2009-04-16T02:17:31Z
Droll
31361
/* Version 2.0 fields */ tweak
667615
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for a working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>native_name</code> || The name of the protected area in the local language.
|-
|<code>alt_name</code> || For use when specifying the native name in a language such as Japanese. The name will be displayed in the normal font.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Specifies the width of the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. In most cases <code>type</code> should be <code>landmark</code> and <code>display</code> should be <code>inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is strongly recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s based on a map with a width of 288 pixels that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but can be changed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Version 2.0 method ====
Any image of a map showing the location of the protected area can be used or a marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then a marker can be superimposed on a map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. These large scale maps look different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical.
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
dltnh8czvcncsv7uwvbcl8ak3n4pe56
667616
667615
2009-07-02T02:51:29Z
Qyd
38093
/* Template blank */ cped
667616
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>native_name</code> || The name of the protected area in the local language.
|-
|<code>alt_name</code> || For use when specifying the native name in a language such as Japanese. The name will be displayed in the normal font.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Specifies the width of the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. In most cases <code>type</code> should be <code>landmark</code> and <code>display</code> should be <code>inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is strongly recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s based on a map with a width of 288 pixels that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but can be changed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Version 2.0 method ====
Any image of a map showing the location of the protected area can be used or a marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then a marker can be superimposed on a map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. These large scale maps look different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical.
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
36hgzm9jd60bjiqt8e8dncjyd8yhzdy
667617
667616
2009-08-21T04:17:13Z
Droll
31361
tweak
667617
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>native_name</code> || The name of the protected area in the local language.
|-
|<code>alt_name</code> || For use when specifying the native name in a language such as Japanese. The name will be displayed in the normal font.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Specifies the width of the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. In most cases <code>type</code> should be <code>landmark</code> and <code>display</code> should be <code>inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is strongly recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s based on a map with a width of 288 pixels that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but can be changed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Version 2.0 method ====
Any image of a map showing the location of the protected area can be used or a marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then a marker can be superimposed on a map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. These large scale maps look different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical.
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:Protected area articles requiring maintenance]]
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Use of subheaders in Infobox Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
h74hor3tvu29l942rmfui3pgluccywe
667618
667617
2009-08-21T04:20:17Z
Droll
31361
hmmm
667618
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>native_name</code> || The name of the protected area in the local language.
|-
|<code>alt_name</code> || For use when specifying the native name in a language such as Japanese. The name will be displayed in the normal font.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Specifies the width of the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. In most cases <code>type</code> should be <code>landmark</code> and <code>display</code> should be <code>inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is strongly recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s based on a map with a width of 288 pixels that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but can be changed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Version 2.0 method ====
Any image of a map showing the location of the protected area can be used or a marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then a marker can be superimposed on a map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. These large scale maps look different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical.
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Use of subheaders in Infobox Protected area]]
[[Category:Protected area articles requiring maintenance]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
g6znk7lkkb7qux0k4kw7hqmpxmq1wez
667620
667618
2009-08-21T08:58:15Z
MSGJ
14482
why are these here?
667620
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
==== Version 2.0 fields ====
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>native_name</code> || The name of the protected area in the local language.
|-
|<code>alt_name</code> || For use when specifying the native name in a language such as Japanese. The name will be displayed in the normal font.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Specifies the width of the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 to 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Changes the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || These two fields are seldom used when building new infoboxes. They specify the position of the location marker on some types of maps. They specify the coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in compatibility mode. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. In most cases <code>type</code> should be <code>landmark</code> and <code>display</code> should be <code>inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Used with the <code>lat</code> and <code>long</code> fields above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified it is set to <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]] or GNSS.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default is <code>dms</code> and is strongly recommended.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the citation reference for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== Compatibility method ====
This method is maintained primarily for backward compatibility. It requires the user to determine x and y coordinates in [[pixel]]s based on a map with a width of 288 pixels that determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker image on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but can be changed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| name = Yosemite National Park
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| website = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. The only way to obtain values for x and y is by guess, trial and error. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Version 2.0 method ====
Any image of a map showing the location of the protected area can be used or a marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then a marker can be superimposed on a map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. These large scale maps look different than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical.
{{clr}}
<!--== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
g9eadqfikk0ae9huj5kyxqmxpvol16b
667622
667620
2009-08-21T17:38:13Z
Droll
31361
updating and tweaking
667622
wikitext
text/x-wiki
'''<center><h3 style="color: red;">The markup code for this template is currently under redevelopment.</h3></center>'''
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
==== Template blank ====
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || For use when specifying the non English below the name. Use wiki markup for emphasis if needed.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in when using the XY method. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified the default is <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There has been recent discussion about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. These determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutoral will be prepared shortly.
{{clr}}
==== Automatic method ====
Any image of a map showing the location of the protected area can be used or a marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then a marker can be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps especially consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
6kjct1d9vjcgc2z3ee54q4h20repokn
667624
667622
2009-08-21T17:47:42Z
Droll
31361
more copy editing
667624
wikitext
text/x-wiki
'''<center><h3 style="color: red;">The markup code for this template is currently under redevelopment by [[User:Droll|droll]].</h3></center>'''
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || A caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || A caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not currently functional in when using the XY method. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify the citation reference for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate, consider adding a <code>scale</code> field. If <code>type<code> is not specified the default is <code>landmark</code>.
|-
|<code>scale</code> || This value determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The default is 1:10,000. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There has been recent discussion about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the area name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
There are two mechanisms by which maps can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. These determine the location of the marker on the map. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutoral will be prepared shortly.
{{clr}}
==== Automatic method ====
Any image of a map showing the location of the protected area can be used or a marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are not specified and geographical coordinates are specified without the use of the {{tl|Coord}} template then a marker can be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US - Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps especially consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others supply coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format since that is generally expected. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
7jsz5e6t2ije70rnsy2eqir2nfh2ny9
667625
667624
2009-08-21T18:40:40Z
Droll
31361
finished for now I hope
667625
wikitext
text/x-wiki
'''<center><h3 style="color: red;">The markup code for this template is currently under redevelopment by [[User:Droll|droll]].</h3></center>'''
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
bqqh8q7ryaxvgek23ia1tf2ztq2d6t2
667627
667625
2009-08-21T18:49:09Z
Droll
31361
added a notice about fields being depracated
667627
wikitext
text/x-wiki
'''<center><h3 style="color: red;">The markup code for this template is currently under redevelopment by [[User:Droll|droll]].</h3></center>'''
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The following fields are being depracated: <code>native_name</code> (use <code>alt_name</code>) and <code>website</code> (use <code>url</code>).
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = [http://www.nps.gov/yose/ www.nps.gov/yose]
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
tqc8b00ynpg18ffs1t39pu2sfo5g492
667628
667627
2009-08-22T04:41:42Z
Droll
31361
bit of cleanup
667628
wikitext
text/x-wiki
'''<center><h3 style="color: red;">The markup code for this template is currently under redevelopment by [[User:Droll|droll]].</h3></center>'''
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The following fields are being depracated: <code>native_name</code> (use <code>alt_name</code>) and <code>website</code> (use <code>url</code>).
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Strongly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
ei193cys4n1a3vcsbsqcew3gjwvzyvg
667629
667628
2009-08-25T03:13:50Z
Droll
31361
tweaked and added documentation for the area-ref field as a comment.
667629
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The field, <code>native_name</code> is depracated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
p3tdlwszet3yoqll5xjwxfim9b8z4bo
667630
667629
2009-08-26T22:48:24Z
Rich Farmbrough
819
moved [[Template:Infobox Protected area/doc]] to [[Template:Infobox protected area/doc]]: Caps per guidelines
667629
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The field, <code>native_name</code> is depracated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox Protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox Protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
p3tdlwszet3yoqll5xjwxfim9b8z4bo
667631
667630
2009-08-26T22:50:52Z
Rich Farmbrough
819
667631
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The field, <code>native_name</code> is depracated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| iucn_category =
| photo =
| photo_caption =
| photo_width =
| map =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
gmbhotcrjsx8qtzv6uehq7okaypvctl
667634
667631
2009-10-16T06:43:59Z
Eubulides
37877
Add photo_alt, map_alt.
667634
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The field, <code>native_name</code> is depracated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre></div>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<div style="width:45em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</nowiki></pre></div>
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| location = [[New South Wales]]. [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="max-width:50%; overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
d3afcfm45anwlz8oztix0a99gry3aj1
667636
667634
2009-10-17T22:32:38Z
Eubulides
37877
Add alt text to examples, and make sure their source code matches their output.
667636
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
n95dit2ofi95tpkizyhlpg1t5nat1kq
667639
667636
2009-10-17T23:34:59Z
Faigl.ladislav
43121
cs iw
667639
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
7mufvn352xztn45plk341wlddwqyynm
667644
667639
2009-10-19T15:01:12Z
GJo
63589
667644
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
e6crnm639ujn4oqajl9t5064lgpkf3g
667647
667644
2009-11-07T13:45:27Z
Jens Lehmann
31355
667647
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
== DBpedia Template Annotation ==
{{DBpedia Template
| relatesToClass = Protectedarea
| mapping =
{{DBpedia Attribute | iucn_category | iucncategory}}
{{DBpedia Attribute | location | parseHint = links}}
{{DBpedia Attribute | name | parseHint = links}}
{{DBpedia Attribute | native_name | name | links}}
{{DBpedia Attribute | nearest_city | nearestcity | links}}
{{DBpedia Attribute | nearest_town_or_city | nearestcity | links}}
{{DBpedia Attribute | official_site | homepage | links}}
{{DBpedia Attribute | visitation_num | numberofvisitors}}
}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
9ochhp43k09tbepk0oo8ugoe8w5al2d
667650
667647
2009-11-07T15:03:51Z
AnmaFinotera
31350
[[Help:Reverting|Reverted]] edits by [[Special:Contributions/Jens Lehmann|Jens Lehmann]] ([[User talk:Jens Lehmann|talk]]) to last version by GJo
667650
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
</includeonly>
e6crnm639ujn4oqajl9t5064lgpkf3g
667652
667650
2010-01-02T16:51:19Z
Apalsola
53752
iw: +[[fi:Malline:Luonnonsuojelualue]]
667652
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
603lnol4u86qqjq1yzk8fu3ro14zs6i
667653
667652
2010-01-15T10:02:02Z
Dsvyas
49298
Added interwiki link to gu.wiki
667653
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
0mhyw5l9thkvnamavblxc6qdaqzjgcz
667667
667653
2010-02-26T21:49:38Z
Elegant's
63593
667667
wikitext
text/x-wiki
<noinclude>{{documentation subpage}}</noinclude>
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{notice
| The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.
}}
== Usage ==
This template is part of the [[Wikipedia:WikiProject Protected Areas|Protected Areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps bellow. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
== Markers ==
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| native_name = Nationalparkverwaltung Harz
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
1g2nw0nhbhzcktxeg45ictnqt22rlcs
667669
667667
2010-07-01T17:18:05Z
Funandtrvl
4026
corrections to native/alt nm examples
667669
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. For example congress established Yosemite National Park on October 1, 1890.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = October 1, 1967
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = October 1, 1890
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = December 15, 1970
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
The HTML mark up produced by this template includes an [[hCard]] [[microformat]], which makes the area name and location parsable by computers, either acting automatically to catalogue article across Wikipedia, or via a browser tool operated by a person, to (for example) add the subject to an address book. Within the hCard is a [[Geo (microformat)|Geo microformat]], which additionally makes the coordinates (latitude & longitude) parsable, so that they can be, say, looked up on a map, or downloaded to a GPS unit. For more information about the use of microformats on Wikipedia, please visit [[Wikipedia:WikiProject Microformats|WikiProject Microformats]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
q8pcjd4uvxqp2522f0pttzva1jyy7dj
667672
667669
2010-07-01T17:58:56Z
Funandtrvl
4026
add hcard instruct
667672
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is distance to offset the marker from the left edge of the map image in pixels.
:<code>locator_x</code> is distance to offset the marker from the top edge of the map image in pixels.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
qrats98jywgpjbs4kxcjuvz71be61gl
667674
667672
2010-07-02T06:07:47Z
Droll
31361
tidied up a bit
667674
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is pixel offset the marker from the left edge of the map image.
:<code>locator_y</code> is pixel offset the marker from the top edge of the map image.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
nle27emud82zlvor84dubntbbaf4doj
667687
667674
2010-07-02T22:24:57Z
Nika 243
63596
667687
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is pixel offset the marker from the left edge of the map image.
:<code>locator_y</code> is pixel offset the marker from the top edge of the map image.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[KA:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
fhsc0f8c31qat280htonhf5im6cav8g
667689
667687
2010-07-02T22:25:34Z
Nika 243
63596
667689
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288 pixels. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is pixel offset the marker from the left edge of the map image.
:<code>locator_y</code> is pixel offset the marker from the top edge of the map image.
The maximum and default display width is 283 pixels but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values. A tutorial will be prepared shortly.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
2kuwi1svyqybfak5v8lfzi1mayf5zdu
667692
667689
2010-07-02T22:30:50Z
Funandtrvl
4026
/* XY coordinate method */ ce
667692
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283 pixels. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180 or 220 pixels. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283 pixels but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First, the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7 pixels. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7 pixels. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
4s0fwswwfw6nyrj57zijee3n9db5fy4
667694
667692
2010-07-02T22:35:25Z
Funandtrvl
4026
add abbr
667694
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold and italic.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First, the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
b53n46wsitao109r2gl76ciy0z8uf86
667695
667694
2010-07-07T08:24:48Z
Droll
31361
minor word change
667695
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold or italic.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First, the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
9flj2qw5uwouoc8aydy1yvtlo65v1tm
667696
667695
2010-07-07T08:42:07Z
Droll
31361
/* Usage */ added coords for completeness
667696
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you wish the alternate name to be bold or italic.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First, the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
s35jjwaajd43lm3ofkics6qo5b9t9wg
667699
667696
2010-07-09T05:37:02Z
Droll
31361
reword notice box
667699
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you want bold or italic fonts.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First, the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
</includeonly>
0npai1yixjpal960v5hgljvj5ai9tfc
667700
667699
2010-08-20T23:43:18Z
125.25.3.205
667700
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you want bold or italic fonts.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First, the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
c8k81y5ymd57ysv9jdtnkzowygllmzm
667701
667700
2010-10-10T10:15:09Z
ترجمان05
38125
667701
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you want bold or italic fonts.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First, the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
1afh9qoqqsxusuul9ivm9eamjz8djl3
667702
667701
2010-10-11T09:16:39Z
Droll
31361
fixed error text
667702
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you want bold or italic fonts.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First, the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = 761,266 acres (3,080.73 km<sup>2</sup>)
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = 34.5 km<sup>2</sup> (13.3 sq mi)
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = 154 km<sup>2</sup> (38,000 acres)
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = 761,266 acres (3,080.73 km<sup>2</sup>)
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = 8,900 hectares (22,000 acres)
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = 34.5 km<sup>2</sup> (13.3 sq mi)
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
dso61djl68fm47vo8o4hxy1eh0hhq2y
667703
667702
2010-10-11T09:18:56Z
Droll
31361
fixed mix up
667703
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
{{notice|The field, <code>native_name</code> is deprecated. Use <code>alt_name</code> and use wiki markup if you want bold or italic fonts.}}
=== Usage ===
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
__TOC__
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First, the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = 761,266 acres (3,080.73 km<sup>2</sup>)
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = 34.5 km<sup>2</sup> (13.3 sq mi)
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = 154 km<sup>2</sup> (38,000 acres)
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = 761,266 acres (3,080.73 km<sup>2</sup>)
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = 8,900 hectares (22,000 acres)
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = 34.5 km<sup>2</sup> (13.3 sq mi)
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
8zqm94p4lhhwto1o4ik5gpjy3fdqmyg
667704
667703
2010-10-11T10:28:22Z
Droll
31361
removed the notice at the top of the page - its not need anymore
667704
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
=== Usage ===
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First, the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = 761,266 acres (3,080.73 km<sup>2</sup>)
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = 34.5 km<sup>2</sup> (13.3 sq mi)
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = 154 km<sup>2</sup> (38,000 acres)
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = 761,266 acres (3,080.73 km<sup>2</sup>)
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = 8,900 hectares (22,000 acres)
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = 34.5 km<sup>2</sup> (13.3 sq mi)
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
mc5endk9ahog2t9anhj133oli9qn81t
667706
667704
2010-10-11T14:51:20Z
Plastikspork
14478
Switch back to convert for now
667706
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
=== Usage ===
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area which will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like the bold or italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed
|-
|<code>photo_width</code> || Can change the display width the image if it appears out of proportion. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map if it appears out of proportion to the rest of the infobox. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map.
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || Text that will display when the mouse pointer is over the marker. A text message will be displayed next to the marker if <code>label_position</code> is assigned a valid value other than <code>none</code>. If <code>label</code> is not specified then <code>name</code> is used.
|-
|<code>label_position</code> || Specifies the position of the label with respect to the marker. This is not functional when using the XY method for map display. Valid values are <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code> and <code>none</code>. The default value is <code>none</code> which prevents the label from being displayed as visible text. See <code>label</code>.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the prime meridian, W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || The type of area. See [[Wikipedia:GEO#type:T|type]] for valid values. Type sets the default map scale. If the default map scale is not appropriate consider adding a <code>scale</code> field. The default is <code>landmark</code>.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:GEO#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:GEO#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:GEO#source:S|source]]. For example [[Geographic Names Information System|gnis]] or [[U.S. National Geodetic Survey|ngs]], etc. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinate display. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default currently is <code>dms</code>. There are ongoing discussions about which format should be used.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The annual number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First, the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
573ygwdcgtdvtgygolgfua81h7jsk8q
667709
667706
2010-10-19T04:55:39Z
Droll
31361
Started an update
667709
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
=== Usage ===
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
=== Field descriptions ===
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name = Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width = 200</code> and not <code>photo_width = 200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width = 200</code> and not <code>map_width = 200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates#type:T|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale = 50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Coord-doc-source|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
=== Map display methods ===
Any image of a map showing the location of the protected area can be used. There are two mechanisms by which maps using a marker can be displayed.
==== XY coordinate method ====
First, the x and y coordinates in [[pixel]]s must be found based on a map with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x = 20</code> from the left of the image and <code>locator_y = 84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clr}}
==== Automatic method ====
A marker can be superimposed on one of a set of special map templates. If values for <code>locator_x</code> and <code>locator_y</code> are <u>not</u> specified and geographical coordinates are specified <u>without</u> the use of the {{tl|Coord}} template then a marker will be superimposed on the map selected from a set of map templates. These maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The name you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map = Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{-}}
The maps in this template set for large areas use [[equirectangular projection]]. Large scale maps look different using this projection than those with which most are familiar. Most maps use some other [[Map projection|method of projection]]. Compare the two maps below. The second uses equirectangular projection.
<div style="float: left; margin-right: 20px">
[[File:US Locator Blank.svg|300px]]
</div>
<div style="float: left;">
[[File:USA location map.svg|300px]]
</div>
{{clr}}
For technical reasons it is much easier for the template to use the second map. The distortion of the of the [[49th parallel north]] which defines most of the US–Canadian border can be clearly seen. If the first map were to be used the marker would not appear in the proper location. With maps of smaller areas this difference is less critical. If you want to use larger maps consider using the XY method.
{{clr}}
<!--
=== Markers ===
There are two optional fields not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker = Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size = 9</nowiki></code>}}.
-->
=== Coordinate syntax ===
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clr}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clr}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clr}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
=== Infobox examples ===
==== With map only ====
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clr}}
==== With photograph only ====
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clr}}
==== With no photograph or map ====
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clr}}
==== With photograph and map ====
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clr}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
=== Microformat ===
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
o1lfd6id1enhhg43mamt4ypqbl31vjd
667711
667709
2010-10-19T21:53:55Z
Droll
31361
test
667711
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates#type:T|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Coord-doc-source|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]s. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
{{UF-hcard-place}}
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
76qrv58fice4p2jhroo12d9pqhwvqrk
667713
667711
2010-10-19T22:09:52Z
Droll
31361
updated some more - might need more work
667713
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected fields can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Field descriptions ==
This table describes all fields which can be used in building infoboxes. Only the <code>name</code> field is required.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use it in the <code>name</code> field. This field can be used to display the name in the local language. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specify the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> fields are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates#type:T|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Coord-doc-source|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area field above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation fields above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> field, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]s. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
0gpknt0lsti8iriankoebid9hlzgoa9
667714
667713
2010-10-24T08:59:14Z
Droll
31361
tweak
667714
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates#type:T|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Coord-doc-source|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]s. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
iqnkmwgt26tlck6z20oezppet9s52ve
667715
667714
2010-10-24T09:05:29Z
Droll
31361
typo
667715
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates#type:T|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Coord-doc-source|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
8m7axgdv48tu5pg0eh0e1k5fra4i5cy
667717
667715
2010-10-24T09:08:22Z
Droll
31361
/* Geographical coordinates method */ tweak
667717
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates#type:T|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Coord-doc-source|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
542diy1hv15itzlkr86h1lvr46r3qs0
667718
667717
2010-10-24T09:09:48Z
Droll
31361
/* Geographical coordinates method */ oops
667718
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates#type:T|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Coord-doc-source|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This is being considered. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
qg271bcros6ir9kjmb9dva9jcy92wpu
667719
667718
2010-10-24T09:11:19Z
Droll
31361
/* Coordinate syntax */ tweak
667719
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates#type:T|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Coord-doc-source|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/sandbox/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
fxqvc4n0pykf4hncq2s627otqwtcpaf
667721
667719
2010-10-24T09:30:30Z
Droll
31361
tweak
667721
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates#type:T|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Coord-doc-source|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref = <ref name=gnss>
{{cite web
| url = http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en
| title = Geographical Name Search Service
| publisher = Natural Resources Canada
| accessdate = 2009-04-26 }}</ref>
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
<div style="font-size: medium;">References</div>
----
{{reflist}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
6p9j01ff7xk2z9whbrh9dc31ghprrlp
667722
667721
2010-11-14T05:52:07Z
Droll
31361
removed citation - just added clutter IMHO
667722
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates#type:T|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Coord-doc-source|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
rq8c025c1wn90gertokqmgu4dtqkgsd
667723
667722
2011-01-12T01:40:42Z
Bamyers99
43233
Added Category:Geography infobox templates
667723
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates#type:T|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Coord-doc-source|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
</includeonly>
7z0512l0fxxohxrelev7brngss4xo5v
667728
667723
2011-02-12T19:59:23Z
Rausch
63602
667728
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See below for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates#type:T|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates#scale:N|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates#region:R|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Coord-doc-source|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
kcoheb3nt8qdjvnjiug4jhipj70y204
667729
667728
2011-02-14T19:54:42Z
Droll
31361
fixed some broken wiki links
667729
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[Wikipedia:WikiProject Geographical coordinates/type:|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[Wikipedia:WikiProject Geographical coordinates/source:|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[Wikipedia:WikiProject Geographical coordinates/region:|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[Wikipedia:WikiProject Geographical coordinates/source:|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
rds8fqgr7eb0ra4oquet3681whntlic
667730
667729
2011-02-14T20:23:28Z
Droll
31361
tweaked come links
667730
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
Coordinates can be entered as [[decimal digit]]s or using degrees, minutes and seconds. There is also the option of using the {{tl|Coord}} template but this is not recommended since it does not allow for map functionality. If no map is to be displayed then the Coord template will work fine.
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dms</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example dm</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; font-size: 90%;">Example d</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 04
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_m = 39
| lat_NS = S
| long_d = 151
| long_m = 12
| long_EW = E
</pre>
<pre style="width: 20em; float: left; margin-right: 1em; font-size: 90%;">
| lat_d = 33
| lat_NS = S
| long_d = 151
| long_EW = E
</pre>
{{clear}}
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example unsigned dd</div>
<div style="text-align: center; width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">Example signed dd</div>
{{clear}}
<pre style="width: 20em; float: left; margin-right: 1em; left; font-size: 90%;">
| lat_d = 33.65100
| lat_NS = S
| long_d = 51.20100
| long_EW = E
</pre>
<pre style="width: 20em; float: left; font-size: 90%;">
| lat_d = -33.65100
| long_d = 51.20100
</pre>
{{clear}}
The coord template can be used with the following syntax. More information can be found at [[Template:Coord]].
<pre style="width: 65em; font-size: 90%;">
{{coord|33|39|03.6|S|151|12|03.6|E|format=dms|region:AU_type:landmark|display=inline,title}}
</pre>
For additional examples, see [[Template:Infobox protected area/coordinate examples|Coordinate examples]].
The coordinates for Canadian places can be found using [http://gnss.nrcan.gc.ca/gnss-srt/searchName.jsp?language=en Geographical Name Search Service] (GNSS). Coordinates for United States places can be found using [http://geonames.usgs.gov/pls/gnispublic Geographic Names Information System] (GNIS). Another tool that will supply coordinates for many locations around the world can be found at [http://pagesperso-orange.fr/universimmedia/geo/loc.htm univers immedia] which uses Google Maps. These sites and many others provide coordinates using [[decimal degrees]]s which are used in the example above. Using decimal degrees simplifies data entry and accuracy. By default the coordinates are displayed in degree, minute, second format. This can be changed by setting {{nowrap|<code><nowiki>format=dec</nowiki></code>}}.
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
nxbgg5z1m9kr2r2rol4wnn1niupi400
667731
667730
2011-02-15T20:39:37Z
Droll
31361
/* Coordinate syntax */ moved content to a subpage
667731
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
<!--|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
-->
|-
|<code>established</code> || The date the protected area was established. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body</code> || The agency or organization which controls or owns the protected area.
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map.
A list of maps can be found at [[Special:PrefixIndex/Template:Location_map|Location maps]]. All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code>.
{{clear}}
<!--
== Markers ==
There are two optional parameters not mentioned above. They are <code>marker</code> and <code>marker_size</code>. The default marker is red and has a size of 7px. It is created by shrinking the image [[:file:Red_pog.svg|Red pog.svg]] to 7px. Other images can be found on [[commons:Category:Map pointer|Wikimedia Commons]]. Since this is an encyclopedia users are advised to select appropriate markers only. For example to use a Green marker enter {{nowrap|<code><nowiki>marker=Green pog.svg</nowiki></code>}}. To make it a bit larger enter {{nowrap|<code><nowiki>marker_size=9</nowiki></code>}}.
-->
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
{{Infobox map/coordinate syntax}}
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
psq9mc2fv4cv3eb7qr61z182ldwmhz0
667733
667731
2011-06-06T21:01:47Z
Droll
31361
updated
667733
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately own and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
{{Infobox map/coordinate syntax}}
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
4unni136i7lbpp8jc2o10aa016eio0p
667736
667733
2011-06-13T09:37:42Z
Droll
31361
tidied up some
667736
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately own and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
{{Infobox map/coordinate syntax}}
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
85htrk7a42e0aewbhawavz0gyx6qy0t
667738
667736
2011-06-18T09:13:46Z
NERIUM
38120
667738
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>area_ref</code> || Used with the area parameter above. Highly recommended. Specify the a citation for the area data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately own and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
{{Infobox map/coordinate syntax}}
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
2xn83czwtu0gesrxl012pse3c0eix8p
667740
667738
2011-07-04T06:20:17Z
Droll
31361
undocumented an unsupported parameter
667740
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately own and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
{{Infobox map/coordinate syntax}}
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[es:Plantilla:Infobox área protegida]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
b42bvw3u6zsfizh1quz9ia3977i8c6t
667742
667740
2011-07-06T19:31:32Z
Götz
41828
interwikis
667742
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately own and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
{{Infobox map/coordinate syntax}}
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
evuw1mw39u8z7whc44wcuikw1utomqr
667744
667742
2011-09-16T13:25:38Z
אריה ה.
38126
adding Hebrew interwiki
667744
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately own and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
{{Infobox map/coordinate syntax}}
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
6kv480fdbrgcggawyu8oqd3gk1d69zc
667745
667744
2011-09-23T20:38:51Z
Bamyers99
43233
Documented mark and marker_size parameters.
667745
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately own and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
{{Infobox map/coordinate syntax}}
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox Protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
7ccuhwwfxvciw49qhbgqacpxhg4oa6g
667749
667745
2011-10-01T12:07:46Z
Ultima.ramza
63605
~interwiki id
667749
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>. See [[#Coordinate syntax|below]].
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified. See [[#Coordinate syntax|below]].
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately own and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
{{Infobox map/coordinate syntax}}
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
dhmyhbyw2lfjtg58l40vir68rgkou97
667750
667749
2011-10-27T10:03:50Z
Thumperward
14624
undoing transclusion of another template's doc. this just makes docs harder to maintain
667750
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately own and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
8d0bqjskct11vq1hltrt2fxkzloo6ph
667751
667750
2011-11-26T00:22:45Z
Rmashhadi
55493
667751
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately own and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
q48fpnkb18cx9atjkt7esuup9fcmfzv
667753
667751
2012-01-13T23:15:34Z
Objectivesea
43978
/* Alternate parameters */ corrected "owned" for "own"
667753
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="font-size: 90%;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|300px]]
| [[File:Usa edcp location map.svg|300px]]
| [[File:Usa edcp relief location map.png|300px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto; font-size: 90%;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
bgw4hg302b214ytxs8fts46kduugi3v
667755
667753
2012-01-15T19:59:35Z
Funandtrvl
4026
adj pg wdth & chg font-sze, for visually impaired, see WP:ACCESS
667755
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 100%; text-align: center; line-height: 1.5;"
|-
| <div style="background-color: #E7AF97;"><!--
-->[[World Conservation Union|IUCN]] Category Ia ([[Nature reserve|Strict Nature Reserve]])</div>
|-
| <div style="background-color: #DACAA5;"><!--
-->[[World Conservation Union|IUCN]] Category Ib ([[Wilderness area|Wilderness Area]])<div>
|-
| <div style="background-color: #CDE5B2;"><!--
-->[[World Conservation Union|IUCN]] Category II ([[national park|National Park]])</div>
|-
| <div style="background-color: #BFFFBF;"><!--
-->[[World Conservation Union|IUCN]] Category III ([[Natural Monument]])</div>
|-
| <div style="background-color: #B2E5CD;"><!--
-->[[World Conservation Union|IUCN]] Category IV (Habitat/Species Management Area)</div>
|-
| <div style="background-color: #A5CADA;"><!--
-->[[World Conservation Union|IUCN]] Category V (Protected Landscape/Seascape)</div>
|-
| <div style="background-color: #A8BDEC;"><!--
-->[[World Conservation Union|IUCN]] Category VI (Managed Resource Protected Area)</div>
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|260px]]
| [[File:Usa edcp location map.svg|260px]]
| [[File:Usa edcp relief location map.png|260px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
k2loxsyknr6ixploqqzrffza4cbje0q
667757
667755
2012-03-16T07:09:54Z
Droll
31361
fixed table of IUCN categories
667757
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. The template can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|260px]]
| [[File:Usa edcp location map.svg|260px]]
| [[File:Usa edcp relief location map.png|260px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
goac0yhmz6usxix9p5ncp0ai2mliy6e
667759
667757
2012-03-19T03:25:37Z
Droll
31361
removed extra white space from cut and taste text
667759
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|260px]]
| [[File:Usa edcp location map.svg|260px]]
| [[File:Usa edcp relief location map.png|260px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
First, the x and y coordinates in [[pixel]]s must be found using a map image with a width of 288px. Use the upper left hand corner as the origin. The sub-template {{tl|Superimpose}} uses these special coordinates to superimpose the marker on the map image showing the location of the protected area.
:<code>locator_x</code> is the pixel offset of the marker from the left edge of the map image.
:<code>locator_y</code> is the pixel offset of the marker from the top edge of the map image.
The maximum and default display width is 283px, but smaller maps can be displayed by setting <code>map_width</code> to a different value.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| locator_x = 20
| locator_y = 84
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
eykpa2hvjdls8242lzd8250kgbty6lh
667761
667759
2012-04-03T20:05:43Z
Droll
31361
/* XY coordinate method */ demonstrated new method
667761
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|260px]]
| [[File:Usa edcp location map.svg|260px]]
| [[File:Usa edcp relief location map.png|260px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
To display a marker on any map use the x and y parameters.
{{Location mark+/x and y parameters}}
In the example below the marker is 7.8% of the way across the map from the left side and 29% of the way down from the top.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
Yosemite National Park is located at <code>locator_x=20</code> from the left of the image and <code>locator_y=84</code> from the top. You can experiment by pasting this example code into a [[Wikipedia:Sandbox|sandbox]] and substituting your own values.
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
tdjdfs8wvtcvqt9oyfbc8u34lxfq8tm
667765
667761
2012-04-03T20:13:25Z
Droll
31361
/* XY coordinate method */ tidied up
667765
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|260px]]
| [[File:Usa edcp location map.svg|260px]]
| [[File:Usa edcp relief location map.png|260px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
To display a marker on any map use the x and y parameters.
{{Location mark+/x and y parameters}}
In the example below the marker is 7.8% of the way across the map from the left side and 29% of the way down from the top.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
3n68ihafnphb50oxa0zas8cdupxobq2
667767
667765
2012-04-03T20:14:26Z
Droll
31361
/* XY coordinate method */ correction
667767
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>locator_x</code><br/><code>locator_y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 288 pixels. The template will scale these values for proper display.
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Geographical coordinates method ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|260px]]
| [[File:Usa edcp location map.svg|260px]]
| [[File:Usa edcp relief location map.png|260px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== XY coordinate method ===
To display a marker on any map use the x and y parameters.
{{Location mark+/x and y parameters}}
In the example below the marker is 7.8% of the way across the map from the left side and 29% of the way down from the top.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| map = US_Locator_Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| map = US_Locator_Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = Ib
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
hqduc0ovfm7f5k30ffhvt7ugd6zrp5y
667769
667767
2012-04-03T20:31:53Z
Droll
31361
tweaked
667769
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image|below]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|260px]]
| [[File:Usa edcp location map.svg|260px]]
| [[File:Usa edcp relief location map.png|260px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== Display a marker on any map image ===
To display a marker on any map use the x and y parameters.
{{Location mark+/x and y parameters}}
In the example below the marker is 7.8% of the way across the map from the left side and 29% of the way down from the top.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| map = US Locator Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| map = US Locator Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
f0splzh8o83oua5zi60t8sosppo3wfk
667770
667769
2012-08-21T10:53:16Z
Yahia.barie
14596
[[bn:টেমপ্লেট:তথ্যছক সংরক্ষিত অঞ্চল]]
667770
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image|below]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|260px]]
| [[File:Usa edcp location map.svg|260px]]
| [[File:Usa edcp relief location map.png|260px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== Display a marker on any map image ===
To display a marker on any map use the x and y parameters.
{{Location mark+/x and y parameters}}
In the example below the marker is 7.8% of the way across the map from the left side and 29% of the way down from the top.
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| map = US Locator Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| map = US Locator Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[bn:টেমপ্লেট:তথ্যছক সংরক্ষিত অঞ্চল]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
pb4qq4f66mm39lcoupdnpnq0ewzbjrb
667771
667770
2012-12-07T20:00:33Z
Droll
31361
removed false info
667771
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image|below]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51.9438889
| long_d = -112.9636110
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|260px]]
| [[File:Usa edcp location map.svg|260px]]
| [[File:Usa edcp relief location map.png|260px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== Display a marker on any map image ===
To display a marker on any map use the x and y parameters.
{{Location mark+/x and y parameters}}
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| map = US Locator Blank.svg
| map_alt = Yosemite is a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| map = US Locator Blank.svg
| map_alt = Located a bit northwest of the center of California, which is on the west coast of the U.S.
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|km2}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
----
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| map_width = 200
| map_alt = Located on the east coast of Australia, about three quarters of the way down from the north
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33
| lat_m = 39
| lat_s = 3.6
| lat_NS = S
| long_d = 151
| long_m = 12
| long_s = 3.6
| long_EW = E
| region = AU
| display = inline
| area = {{convert|154|km2|acre|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[Department of Environment and Climate Change (New South Wales)|Department of Environment and Climate Change]]
}}
</pre>
{{clear}}
=== With photograph only ===
----
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37.8499232
| long_d = -119.5676663
| region = US-CA
| scale = 300000
| display = inline
| area = {{convert|761266|acres|km2}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
----
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|acre}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
----
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which in turn is one province away from the west coast of Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51
| lat_m = 56
| lat_s = 10
| lat_NS = N
| long_d = 112
| long_m = 57
| long_s = 41
| long_EW = W
| coords_ref =
| display = inline
| region = CA
| area = {{convert|34.5|km2|sqmi|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[bn:টেমপ্লেট:তথ্যছক সংরক্ষিত অঞ্চল]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
figtrlx5pyr5ugxm8am5ps2vwedcy5v
667773
667771
2012-12-13T17:52:52Z
Droll
31361
reduced highest expansion depth from 40 to 28
667773
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on some types of maps when the XY method for map display is used. The coordinates of the marker in pixels based on a map width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image|below]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. Default = Red pog.svg, unless <code>map=us locator blank.svg</code> in which case the default = Green pog.svg. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. Default = 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the Coord template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are two methods by which maps using a marker can be displayed.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51 | lat_m = 56 | lat_s = 38 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 49 | long_EW = W
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
| display = inline
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| iucn_category = III
| map = Canada Alberta
| map_alt = Located in south central Alberta, which is in western Canada.
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]] and [[Red Deer, Alberta|Red Deer]]
| lat_d = 51 | lat_m = 56 | lat_s = 38 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 49 | long_EW = W
| region = CA
| area = {{convert|34.5|km2|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks, Recreation and Culture]]
}}
</pre>
{{clear}}
Many of the maps for large areas in this set of templates use [[equirectangular projection]]. Large scale maps, using this projection, look different than those with which most are familiar. However, there are some large area maps that that use a familiar [[map projection]]. A list of large area maps that do not use equirectangular projection can be found [[Template:Infobox protected area/large area maps|here]].
{| style="background-color: transparent" align="center"}}
|+ '''Three examples of maps of the United States'''
|-
! [[:Template:Location map USA|USA]]<br/>Equirectangular projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection
! [[:Template:Location map USA2|USA2]]<br/>Equidistant conic projection with shaded relief
|- valign=top
| [[File:USA location map.svg|260px]]
| [[File:Usa edcp location map.svg|260px]]
| [[File:Usa edcp relief location map.png|260px]]
|}
To use the USA shaded relief map use <code>map=USA2</code> and <code>relief=1</code> or use <code>map=USA relief</code>. Other relief maps are available. See [[:Category:Location relief map by country templates]]
{{clear}}
=== Display a marker on any map image ===
To display a marker on any map use the x and y parameters.
{{Location mark+/x and y parameters}}
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| map = US Locator Blank.svg
| map_alt = A map showing the location of Yosemite in California
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 51 | lat_s = 00 | lat_NS = N
| long_d = 119 | long_m = 34 | long_s = 04 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| map = US Locator Blank.svg
| map_alt = A map showing the location of Yosemite in California
| map_caption = Map of the USA
| x = 78
| y = 290
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 51 | lat_s = 00 | lat_NS = N
| long_d = 119 | long_m = 34 | long_s = 04 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres}}
| established = {{Start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
== Coordinate syntax ==
See [[template:Infobox map/coordinate syntax]].
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| map_width = 175
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[bn:টেমপ্লেট:তথ্যছক সংরক্ষিত অঞ্চল]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
fszpcj7ccfd4tke9ikb9hiugx5195rr
667775
667773
2012-12-21T08:05:37Z
Droll
31361
documented new parameters, removed some extraneous information and tidied up a bit
667775
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. . This is not functional when using the XY method for map display. See [[#Map display methods|Map display methods]].
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if East of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Example using geographic coordinates
| map = USA2
| map_caption = [[Four Corners]]
| lat_d = 36 | lat_m = 59 | lat_s = 56 | lat_NS = N
| long_d = 109 | long_m = 02 | long_s = 43 | long_EW = W
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Example using geographic coordinates
| map = USA2
| map_caption = [[Four Corners]]
| lat_d = 36 | lat_m = 59 | lat_s = 56 | lat_NS = N
| long_d = 109 | long_m = 02 | long_s = 43 | long_EW = W
}}
</pre>
{{clear}}
=== Display a marker on any map image using the <code>x</code> and <code>y</code> parameters ===
{{Location mark+/x and y parameters}}
{{Infobox protected area
| name = Example use the x and y parameters
| map = US Locator Blank.svg
| map_caption = [[Four Corners]]
| x = 269
| y = 351
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Example use the x and y parameters
| map = US Locator Blank.svg
| map_caption = [[Four Corners]]
| x = 269
| y = 351
}}
</pre>
{{clear}}
=== Display a marker on any map image using the <code>x%</code> and <code>y%</code> parameters ===
:x% specifies the percentage of the distance across the image from the left edge.
:y% specifies the percentage of the distance down from the top edge.
{{Infobox protected area
| name = Example use the x% and y% parameters
| map = US Locator Blank.svg
| map_caption = [[Four Corners]]
| x% = 26.9
| y% = 53.8
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Example use the x% and y% parameters
| map = US Locator Blank.svg
| map_caption = [[Four Corners]]
| x% = 26.9
| y% = 53.8
}}
</pre>
{{clear}}
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[bn:টেমপ্লেট:তথ্যছক সংরক্ষিত অঞ্চল]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
1w5k7ndnke81hd3xxgyzztrri10ej16
667777
667775
2012-12-21T08:13:21Z
Droll
31361
tweaked a little more
667777
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| world_heritage_site =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 283px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption that will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can change the display width of the map. The default and maximum width is 283px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption that appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. This is functional only when a [[Template:Location map|Location map]] template is used. See [[#Map display methods|Map display methods]].
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or the label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a location marker if a map is used. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Example using geographic coordinates
| map = USA2
| map_caption = [[Four Corners]]
| lat_d = 36 | lat_m = 59 | lat_s = 56 | lat_NS = N
| long_d = 109 | long_m = 02 | long_s = 43 | long_EW = W
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Example using geographic coordinates
| map = USA2
| map_caption = [[Four Corners]]
| lat_d = 36 | lat_m = 59 | lat_s = 56 | lat_NS = N
| long_d = 109 | long_m = 02 | long_s = 43 | long_EW = W
}}
</pre>
{{clear}}
=== Display a marker on any map image using the <code>x</code> and <code>y</code> parameters ===
{{Location mark+/x and y parameters}}
{{Infobox protected area
| name = Example use the x and y parameters
| map = US Locator Blank.svg
| map_caption = [[Four Corners]]
| x = 269
| y = 351
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Example use the x and y parameters
| map = US Locator Blank.svg
| map_caption = [[Four Corners]]
| x = 269
| y = 351
}}
</pre>
{{clear}}
=== Display a marker on any map image using the <code>x%</code> and <code>y%</code> parameters ===
:x% specifies the percentage of the distance across the image from the left edge.
:y% specifies the percentage of the distance down from the top edge.
{{Infobox protected area
| name = Example use the x% and y% parameters
| map = US Locator Blank.svg
| map_caption = [[Four Corners]]
| x% = 26.9
| y% = 53.8
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Example use the x% and y% parameters
| map = US Locator Blank.svg
| map_caption = [[Four Corners]]
| x% = 26.9
| y% = 53.8
}}
</pre>
{{clear}}
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[bn:টেমপ্লেট:তথ্যছক সংরক্ষিত অঞ্চল]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
pxzhahhsrb97cw1vzjbxysr2eoymuh7
667778
667777
2012-12-21T08:40:55Z
Droll
31361
Its late, I'm stopping
667778
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can be used to change the display width of the map. The default and maximum width is 284px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>. If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption which will appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. This is functional only when a [[Template:Location map|Location map]] template is used and then only when a relief map is available. See [[#Map display methods|Map display methods]].
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on one of a set of special map templates. If a valid map name is specified this is the method the template will attempt to use. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. The marker will not be displayed if the {{tl|coord}} template is used. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters for Location map. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] - Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] - a search that might help.
:[[Special:Prefixindex/Template:Location map]] - another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for the for Alberta, Canada is [[Template:Location map Canada Alberta|Location map Canada Alberta]]. In this case specify <code>map=Canada Alberta</code>. For example:
{{Infobox protected area
| name = Example using geographic coordinates
| map = USA2
| map_caption = [[Four Corners]]
| lat_d = 36 | lat_m = 59 | lat_s = 56 | lat_NS = N
| long_d = 109 | long_m = 02 | long_s = 43 | long_EW = W
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Example using geographic coordinates
| map = USA2
| map_caption = [[Four Corners]]
| lat_d = 36 | lat_m = 59 | lat_s = 56 | lat_NS = N
| long_d = 109 | long_m = 02 | long_s = 43 | long_EW = W
}}
</pre>
{{clear}}
=== Display a marker on any map image using the <code>x</code> and <code>y</code> parameters ===
{{Location mark+/x and y parameters}}
{{Infobox protected area
| name = Example use the x and y parameters
| map = US Locator Blank.svg
| map_caption = [[Four Corners]]
| x = 269
| y = 351
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Example use the x and y parameters
| map = US Locator Blank.svg
| map_caption = [[Four Corners]]
| x = 269
| y = 351
}}
</pre>
{{clear}}
=== Display a marker on any map image using the <code>x%</code> and <code>y%</code> parameters ===
:x% specifies the percentage of the distance across the image from the left edge.
:y% specifies the percentage of the distance down from the top edge.
{{Infobox protected area
| name = Example use the x% and y% parameters
| map = US Locator Blank.svg
| map_caption = [[Four Corners]]
| x% = 26.9
| y% = 53.8
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Example use the x% and y% parameters
| map = US Locator Blank.svg
| map_caption = [[Four Corners]]
| x% = 26.9
| y% = 53.8
}}
</pre>
{{clear}}
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[bn:টেমপ্লেট:তথ্যছক সংরক্ষিত অঞ্চল]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
fdd23dfbof76ylnyb4oze0uwajjw1j9
667779
667778
2012-12-21T20:48:38Z
Droll
31361
/* Map display methods */ transcluded some of the documentation
667779
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can be used to change the display width of the map. The default and maximum width is 284px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>. If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption which will appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. This is functional only when a [[Template:Location map|Location map]] template is used and then only when a relief map is available. See [[#Map display methods|Map display methods]].
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city</code> || Recommended if the area is not within a city. It could be a city with a major airport or a large gateway town where supplies and lodging are available.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is owned by the [[Ounalashka Corporation]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>owner</code> → Owner
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[bn:টেমপ্লেট:তথ্যছক সংরক্ষিত অঞ্চল]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
2sq7h0753lvn133s12mazqmdbj2gpjn
667780
667779
2012-12-29T21:35:10Z
Droll
31361
added new options and rearranged
667780
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can be used to change the display width of the map. The default and maximum width is 284px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>. If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption which will appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. This is functional only when a [[Template:Location map|Location map]] template is used and then only when a relief map is available. See [[#Map display methods|Map display methods]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
[[ar:قالب:صندوق معلومات منطقة محمية]]
[[bn:টেমপ্লেট:তথ্যছক সংরক্ষিত অঞ্চল]]
[[cs:Šablona:Infobox chráněná oblast]]
[[de:Vorlage:Infobox Nationalpark]]
[[es:Plantilla:Ficha de espacio natural]]
[[fa:الگو:جعبه اطلاعات منطقه حفاظتشده]]
[[fr:Modèle:Infobox aire protégée]]
[[gu:ઢાંચો:માહિતીચોકઠું આરક્ષિત ક્ષેત્ર]]
[[he:תבנית:פארק לאומי]]
[[hy:Կաղապար:Արգելոցային տարածք]]
[[id:Templat:Infobox protected area]]
[[it:Template:Area protetta]]
[[ka:თარგი:ინფოდაფა დაცული ტერიტორია]]
[[kk:Үлгі:Қорық аймақ]]
[[mk:Шаблон:Природен резерват]]
[[ja:Template:Infobox Protected area]]
[[pt:Predefinição:Info/Área protegida]]
[[ru:Шаблон:Заповедная зона]]
[[ro:Format:Infobox protected area]]
[[fi:Malline:Luonnonsuojelualue]]
[[sv:Mall:Nationalpark]]
[[th:แม่แบบ:กล่องเขตคุ้มครอง]]
[[uk:Шаблон:Infobox Protected area]]
</includeonly>
9cz293cmwhnp4s5nzz851346zbdkiq1
667781
667780
2013-03-28T11:04:31Z
DixonDBot
2300
Migrating 23 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q5831644]]
667781
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can be used to change the display width of the map. The default and maximum width is 284px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>. If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption which will appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. This is functional only when a [[Template:Location map|Location map]] template is used and then only when a relief map is available. See [[#Map display methods|Map display methods]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
</includeonly>
s946epcacmkdpix95h3husl4uxkhx45
667782
667781
2013-04-16T20:30:35Z
Alan Liefting
31357
/* Usage */ "and the extra parameters listed below can also be added" - might as well say it.
667782
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| url =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can be used to change the display width of the map. The default and maximum width is 284px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>. If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption which will appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. This is functional only when a [[Template:Location map|Location map]] template is used and then only when a relief map is available. See [[#Map display methods|Map display methods]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
</includeonly>
8rfnltd7fqzkvaqdhi9gnqn4zhzczot
667783
667782
2013-05-16T12:11:09Z
No such user
14671
Document child and embedded params
667783
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Can be used to change the display width of the map. The default and maximum width is 284px, but usually the map should be much smaller. For example <code>map_width=200</code> and not <code>map_width=200px</code>. If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alt text for the map. See [[WP:ALT]].
|-
|<code>map_caption</code> || The caption which will appears below the map if one is required.
|-
|<code>relief</code> || Selects a relief map when assigned any value. This is functional only when a [[Template:Location map|Location map]] template is used and then only when a relief map is available. See [[#Map display methods|Map display methods]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another onfobox
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS HERE, THANKS -->
</includeonly>
l2aoss99vt6ef4tn0tzye2m7pjmlv9p
667786
667783
2013-05-30T07:27:23Z
Zyxw
14644
Include "map_relief" in blank template. Update documentation.
667786
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another onfobox
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS IN WIKIDATA, THANKS -->
</includeonly>
mf2wgwjtrvfnqtrtwqt9qz20o8jngjg
667788
667786
2013-12-26T14:35:05Z
Ajeet97cool
53765
667788
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another onfobox
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesnt appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "string",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesnt display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "string",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "number",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "number",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "number",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS IN WIKIDATA, THANKS -->
</includeonly>
ecuq9xtsl22nj9icrp6trnxpbqz4dn2
667789
667788
2013-12-29T16:21:03Z
Ajeet97cool
53765
667789
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another onfobox
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesnt appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesnt display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS IN WIKIDATA, THANKS -->
</includeonly>
h7v3ft6usfoehtaum6h57kcszp2voqa
667791
667789
2014-01-06T11:43:55Z
Aliwal2012
8575
typo
667791
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesnt appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesnt display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
<!-- INTERWIKIS IN WIKIDATA, THANKS -->
</includeonly>
byp5ukcc6wozw304d7i3m78z9af1zh8
667793
667791
2014-05-20T02:13:33Z
108.84.188.86
add [[Category:Protected_areas_templates|Protected area infobox]]
667793
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesnt appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesnt display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
[[Category:Protected_areas_templates|Protected area infobox]]
<!-- INTERWIKIS IN WIKIDATA, THANKS -->
</includeonly>
ccw3s577w72fkwz4oha4gc1qckrq98b
667795
667793
2014-05-20T02:17:34Z
Here
59667
touch last anon edit was me
667795
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesnt appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesnt display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
[[Category:Protected_areas_templates|Protected area infobox]]
<!-- INTERWIKIS IN WIKIDATA, THANKS -->
</includeonly>
s5qer6wb4yj7bxxoohrzb5dz176ozqy
667803
667795
2014-07-23T00:42:47Z
Owl-syme
63611
added website parameter - preferable to url parameter
667803
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesnt appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesnt display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
[[Category:Protected_areas_templates|Protected area infobox]]
<!-- INTERWIKIS IN WIKIDATA, THANKS -->
</includeonly>
cyovqkvmkppfu8ennwttmv6wqjoin9k
667804
667803
2014-08-12T00:04:49Z
Bamyers99
43233
Added example With embedded alternate map
667804
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| established =
| visitation_num =
| visitation_year =
| governing_body =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
== IUCN Categories ==
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Coordinate syntax ==
See [[Template:Infobox map/coordinate syntax]].
== Alternate parameters ==
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
== Infobox examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], [[Germany]]
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], [[Germany]]
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesnt appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesnt display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>
<!-- CATEGORIES HERE, THANKS -->
[[Category:IUCN Protected Area infobox templates|Protected area]]
[[Category:Geography infobox templates|Protected area infobox]]
[[Category:Protected_areas_templates|Protected area infobox]]
<!-- INTERWIKIS IN WIKIDATA, THANKS -->
</includeonly>
osl5e6gcjyd3gjjhkzktyk4u5ulncve
667806
667804
2014-09-08T16:47:55Z
Funandtrvl
4026
tweak/fx
667806
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Infobox examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], [[Germany]]
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], [[Germany]]
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesnt appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesnt display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected_areas_templates]]
}}</includeonly>
db8l6bmzmfarjgfkpz8krndk0ie1d1j
667808
667806
2014-09-08T16:50:36Z
Funandtrvl
4026
updte
667808
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional Infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], [[Germany]]
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], [[Germany]]
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesnt appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesnt display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected_areas_templates]]
}}</includeonly>
qaphahmil96bojbt4mwot62vg4yceno
667809
667808
2014-09-23T22:02:13Z
Funandtrvl
4026
add code
667809
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| x =
| y =
| x% =
| y% =
| type =
| region =
| scale =
| source =
| display =
| format =
| coords =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], [[Australia]]
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 Million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], [[United States]]
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], [[Germany]]
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta, Canada|Alberta]], [[Canada]]
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], [[Germany]]
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], [[Germany]]
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesnt appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesnt display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected_areas_templates]]
}}</includeonly>
521csllosrmsgddtbw81occwqsr09i4
667810
667809
2014-12-10T14:03:03Z
Colonies Chris
31374
[[wp:datescript]]-assisted date/terms audit; see [[wp:unlinkdates]], [[wp:overlink]]
667810
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| x =
| y =
| x% =
| y% =
| type =
| region =
| scale =
| source =
| display =
| format =
| coords =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesnt appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesnt display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected_areas_templates]]
}}</includeonly>
1doo5b5id9rfzfkzq9z98tvu4l6ydte
667811
667810
2014-12-27T11:04:26Z
John of Reading
26945
/* TemplateData */Typo fixing, replaced: doesnt → doesn't (2) using [[Project:AWB|AWB]]
667811
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| x =
| y =
| x% =
| y% =
| type =
| region =
| scale =
| source =
| display =
| format =
| coords =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected_areas_templates]]
}}</includeonly>
to58ub3ukbnk4e5x89n91bij4ogvtwr
667813
667811
2014-12-28T05:29:05Z
Zyxw
14644
add [[Category:Embeddable templates]] using [[Project:AWB|AWB]]
667813
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| x =
| y =
| x% =
| y% =
| type =
| region =
| scale =
| source =
| display =
| format =
| coords =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = 100 1325.JPG
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
}}</includeonly>
8ibzv2qcebi2vie5d6mzkitsxknlit1
667815
667813
2015-03-25T03:27:50Z
Hike395
26964
/* With photograph only */ use featured pic
667815
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| x =
| y =
| x% =
| y% =
| type =
| region =
| scale =
| source =
| display =
| format =
| coords =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
}}</includeonly>
2u1bx2j5rwup2hjr5kyuqqot1e6y7xl
667818
667815
2015-04-10T00:27:19Z
Bamyers99
43233
Region was missing
667818
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| x =
| y =
| x% =
| y% =
| type =
| region =
| scale =
| source =
| display =
| format =
| coords =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map inage, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
}}</includeonly>
1h1dgkfb696kswyytm6hsh12outbump
667821
667818
2016-02-02T17:51:16Z
John of Reading
26945
/* Parameter descriptions */Typo fixing, replaced: inage → image using [[Project:AWB|AWB]]
667821
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| x =
| y =
| x% =
| y% =
| type =
| region =
| scale =
| source =
| display =
| format =
| coords =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"Name": {
"label": "name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"Alternative Name": {
"label": "alt_name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"IUCN Category": {
"label": "iucn_category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"Photo": {
"label": "photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"Photo Width": {
"label": "photo_width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"Photo Alternative Text": {
"label": "photo_alt",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"Photo Caption": {
"label": "photo_caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"Map": {
"label": "map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"Map Alternative Text": {
"label": "map_alt",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"Map Caption": {
"label": "map_caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"Map Width": {
"label": "map_width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"Relief": {
"label": "relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"Location": {
"label": "location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"Nearest City": {
"label": "nearest_city",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"Latitude(Degrees)": {
"label": "lat_d",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"Latitude(Minutes)": {
"label": "lat_m",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"Latitude(Seconds)": {
"label": "lat_s",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"Latitude(North/South)": {
"label": "lat_NS",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"Longitude(Degrees)": {
"label": "long_d",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"Longitude(Minutes)": {
"label": "long_m",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"Longitude(Seconds)": {
"label": "long_s",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"Longitude(East/West)": {
"label": "long_EW",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"Coordinates": {
"label": "coords",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"Coordinates Reference": {
"label": "coords_ref",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"Type": {
"label": "type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"Scale": {
"label": "scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"Region": {
"label": "region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"Source": {
"label": "source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"Format": {
"label": "format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"Area": {
"label": "area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"Display": {
"label": "display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"Established": {
"label": "established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"Visitation Number": {
"label": "visitation_num",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"Visitation Year": {
"label": "visitation_year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"Visitation Reference": {
"label": "visitation_ref",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"Governing Body": {
"label": "governing_body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"World Heritage Site": {
"label": "world_heritage_site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"Url": {
"label": "url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"Child": {
"label": "child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"Embedded": {
"label": "embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
}}</includeonly>
3ga604ol6dy332wvkasxqodhjarj3ad
667822
667821
2016-02-19T21:48:42Z
Bamyers99
43233
/* TemplateData */ labels and parameter names were reversed
667822
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| x =
| y =
| x% =
| y% =
| type =
| region =
| scale =
| source =
| display =
| format =
| coords =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[World Commission on Protected Areas]] article,
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coords": {
"label": "Coordinates",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
}}</includeonly>
d4bs0vscau9a1axieflon65jbmyj91f
667823
667822
2016-03-24T00:21:26Z
Station1
55698
/* IUCN Categories */ better link, allow blank option
667823
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| x =
| y =
| x% =
| y% =
| type =
| region =
| scale =
| source =
| display =
| format =
| coords =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coords": {
"label": "Coordinates",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
}}</includeonly>
nql3vkgqp6jefogiuotmwm8o51babwq
667826
667823
2016-11-07T19:20:18Z
Frietjes
14509
667826
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| x =
| y =
| x% =
| y% =
| type =
| region =
| scale =
| source =
| display =
| format =
| coords =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coords": {
"label": "Coordinates",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== See also ==
* [[:Category:Pages using infobox protected area with unknown parameters]]
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
}}</includeonly>
71b0in8h5howz4fajd27zkf36cdpq5n
667828
667826
2016-11-07T19:20:40Z
Frietjes
14509
/* See also */
667828
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| x =
| y =
| x% =
| y% =
| type =
| region =
| scale =
| source =
| display =
| format =
| coords =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coords": {
"label": "Coordinates",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== See also ==
* {{tl|infobox park}}
* [[:Category:Pages using infobox protected area with unknown parameters]]
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
}}</includeonly>
pnw4tcvm1koeaq61jze39uavvtl8hah
667830
667828
2016-11-07T19:21:24Z
Frietjes
14509
/* Usage */
667830
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| coords =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| lat_d =
| lat_m =
| lat_s =
| lat_NS =
| long_d =
| long_m =
| long_s =
| long_EW =
| x =
| y =
| x% =
| y% =
| type =
| region =
| scale =
| source =
| display =
| format =
| coords =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| elevation =
| designation =
| authorized =
| created =
| established =
| designated =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coords</code> || For the {{tl|Coord}} template. Will not generate a marker on a map. See [[#With no photograph or map|below]]. When this option is used the <code>type</code>, <code>region</code>, <code>scale</code>, <code>source</code>, <code>format</code> and <code>display</code> parameters are not functional but this data can be entered in the {{tlf|Coord}} template. The defaults should be <code>type:landmark</code> and <code>display:inline,title</code>.
|-
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>lat_m</code> || The minutes of latitude.
|-
|<code>lat_s</code> || The seconds of latitude.
|-
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|-
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|-
|<code>long_m</code> || The minutes of longitude.
|-
|<code>long_s</code> || The seconds of longitude.
|-
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|-
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|-
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|-
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|-
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|-
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| lat_d = 33 | lat_m = 39 | lat_s = 3.6 | lat_NS = S
| long_d = 151 | long_m = 12 | long_s = 3.6 | long_EW = E
| region = AU
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coords = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coords": {
"label": "Coordinates",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template. ",
"default": "type:landmark display:inline,title"
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== See also ==
* {{tl|infobox park}}
* [[:Category:Pages using infobox protected area with unknown parameters]]
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
}}</includeonly>
cl35u0jv4c508ljgwliji66fg2bxh28
667832
667830
2016-11-17T20:55:34Z
JJMC89
6760
Update doc for [[Special:Diff/750099489]]
667832
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| x =
| y =
| x% =
| y% =
| coordinates =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| elevation =
| designation =
| authorized =
| created =
| established =
| designated =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coordinates</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| colspan="2" style="text-align: center" | The below parameters have been '''deprecated''' following [[Special:Permalink/736659693#RfC: Deprecate named coordinates-related infobox parameters|an RfC]]. {{para|coordinates}} should be used instead.
|- style="background: #F99;"
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|- style="background: #F99;"
|<code>lat_m</code> || The minutes of latitude.
|- style="background: #F99;"
|<code>lat_s</code> || The seconds of latitude.
|- style="background: #F99;"
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|- style="background: #F99;"
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|- style="background: #F99;"
|<code>long_m</code> || The minutes of longitude.
|- style="background: #F99;"
|<code>long_s</code> || The seconds of longitude.
|- style="background: #F99;"
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|- style="background: #F99;"
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|- style="background: #F99;"
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|- style="background: #F99;"
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|- style="background: #F99;"
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|- style="background: #F99;"
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|- style="background: #F99;"
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline,title}}
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== See also ==
* {{tl|infobox park}}
* [[:Category:Pages using infobox protected area with unknown parameters]]
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
}}</includeonly>
bdw9e1yp43dhcibyhsvaskjed2kfq9f
667834
667832
2016-11-19T17:50:12Z
Zyxw
14644
add category
667834
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| x =
| y =
| x% =
| y% =
| coordinates =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| elevation =
| designation =
| authorized =
| created =
| established =
| designated =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coordinates</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| colspan="2" style="text-align: center" | The below parameters have been '''deprecated''' following [[Special:Permalink/736659693#RfC: Deprecate named coordinates-related infobox parameters|an RfC]]. {{para|coordinates}} should be used instead.
|- style="background: #F99;"
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|- style="background: #F99;"
|<code>lat_m</code> || The minutes of latitude.
|- style="background: #F99;"
|<code>lat_s</code> || The seconds of latitude.
|- style="background: #F99;"
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|- style="background: #F99;"
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|- style="background: #F99;"
|<code>long_m</code> || The minutes of longitude.
|- style="background: #F99;"
|<code>long_s</code> || The seconds of longitude.
|- style="background: #F99;"
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|- style="background: #F99;"
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|- style="background: #F99;"
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|- style="background: #F99;"
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|- style="background: #F99;"
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|- style="background: #F99;"
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|- style="background: #F99;"
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline,title}}
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* [[:Category:Pages using infobox protected area with unknown parameters]]
* [[:Category:Pages using deprecated coordinates format]]
== See also ==
* {{tl|infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
q11f4299refy6yrnwwamcwj13m3lwfc
667836
667834
2016-11-22T00:44:20Z
Zyxw
14644
/* Tracking categories */update category links using [[Project:AWB|AWB]]
667836
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| x =
| y =
| x% =
| y% =
| coordinates =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| elevation =
| designation =
| authorized =
| created =
| established =
| designated =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coordinates</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| colspan="2" style="text-align: center" | The below parameters have been '''deprecated''' following [[Special:Permalink/736659693#RfC: Deprecate named coordinates-related infobox parameters|an RfC]]. {{para|coordinates}} should be used instead.
|- style="background: #F99;"
|<code>lat_d</code> || The degrees of latitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|- style="background: #F99;"
|<code>lat_m</code> || The minutes of latitude.
|- style="background: #F99;"
|<code>lat_s</code> || The seconds of latitude.
|- style="background: #F99;"
|<code>lat_NS</code> || N if north of the equator, S if south of the equator. Other values will be disregarded.
|- style="background: #F99;"
|<code>long_d</code> || The degrees of longitude. This value can be specified as a [[Decimal degrees|decimal degree]] and when this format is used minutes and seconds should not be specified.
|- style="background: #F99;"
|<code>long_m</code> || The minutes of longitude.
|- style="background: #F99;"
|<code>long_s</code> || The seconds of longitude.
|- style="background: #F99;"
|<code>long_EW</code> || E if east of the [[prime meridian]], W if west of the prime meridian. Other values will be disregarded.
|- style="background: #F99;"
|<code>type</code> || Type is one way to specify the scale of maps generated by external map websites. See [[WP:COORD TYPE|type]] for valid values. The default value is <code>landmark</code>. If no type is appropriate consider using the <code>scale</code> parameter below.
|- style="background: #F99;"
|<code>scale</code> || Determines the zoom factor for external map websites. See [[WP:COORD SCALE|scale]]. The value is 1:10,000 for the default type which is <code>landmark</code>. Using <code>scale=50000</code> will change the zoom to 1:50,000.
|- style="background: #F99;"
|<code>region</code> || A country code. See [[ISO 3166-2:US]], [[ISO 3166-2]] and [[ISO 3166-1 alpha-2]]. For example US-OR is the code for Oregon. This computer readable code is recommended. It will not be displayed. See [[WP:COORD REGION|region]].
|- style="background: #F99;"
|<code>source</code> || Source of the coordinate data. See [[WP:COORD SOURCE|source]]. For example [[Geographic Names Information System|GNIS]] or [[U.S. National Geodetic Survey|NGS]], etc. It will not be displayed. Not all possible values are recognized.
|- style="background: #F99;"
|<code>format</code> || Determines the format of the coordinates displayed. Valid values are <code>dms</code> for degrees, minutes and seconds, and <code>dec</code> for [[decimal degrees]]. The default value is <code>dms</code>.
|- style="background: #F99;"
|<code>display</code> || Determines where the coordinates will be displayed. Valid values are <code>inline</code> and <code>inline,title</code> and their variants. The default is <code>inline,title</code> and is recommended.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline,title}}
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| lat_d = 37 | lat_m = 43 | lat_s = 44 | lat_NS = N
| long_d = 119 | long_m = 35 | long_s = 54 | long_EW = W
| region = US-CA
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| lat_d = 51 | lat_m = 56 | lat_s = 10 | lat_NS = N
| long_d = 112 | long_m = 57 | long_s = 41 | long_EW = W
| coords_ref =
| region = CA
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
| display = inline <!-- for documentation page only - not general practice -->
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| lat_d = 48 | lat_m = 33 | lat_s = 40 | lat_NS = N
| long_d = 8 | long_m = 13 | long_s = 17 | long_EW = E
| region = DE-BW
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| lat_deg = 48 | lat_min = 33 | lat_sec = 40 | lat_dir = N
| lon_deg = 8 | lon_min = 13 | lon_sec = 17 | lon_dir = E
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using deprecated coordinates format}}
== See also ==
* {{tl|infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
fgm7or3kjqlgn5ax60th5jddofsxgec
667838
667836
2016-11-24T08:42:50Z
Jonesey95
14480
Update documentation to include coordinates= parameter and deprecate latd/longd. See [[Wikipedia:Coordinates in infoboxes]].
667838
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| x =
| y =
| x% =
| y% =
| coordinates =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| elevation =
| designation =
| authorized =
| created =
| established =
| designated =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coordinates</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods|converted=1}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using deprecated coordinates format}}
== See also ==
* {{tl|infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
ol8rjp9xz2qk0rg05i4ug47zumpg1qr
667841
667838
2016-11-24T08:43:04Z
Jonesey95
14480
/* Tracking categories */ rm tracking cat.
667841
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| x =
| y =
| x% =
| y% =
| coordinates =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| elevation =
| designation =
| authorized =
| created =
| established =
| designated =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coordinates</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods|converted=1}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
rmh5issx99hqh64fnum523mm6coc2oz
667843
667841
2016-11-27T02:54:53Z
Zyxw
14644
note use of Lua modules using [[Project:AWB|AWB]]
667843
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| region =
| area =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| x =
| y =
| x% =
| y% =
| coordinates =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| elevation =
| designation =
| authorized =
| created =
| established =
| designated =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coordinates</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area = {{convert|154|km2|0|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area = {{convert|154|km2|abbr=on}}
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area = {{convert|761266|acres|0}}
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha|0}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area = {{convert|8900|ha}}
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area = {{convert|34.5|km2|0|abbr=on}}
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods|converted=1}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
afwm3cbhat14i6fe4nm9jmac000in3k
667844
667843
2016-12-23T18:12:23Z
Hike395
26964
add documentation for new parameters
667844
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| region =
| area_ha =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| x =
| y =
| x% =
| y% =
| coordinates =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| elevation =
| designation =
| authorized =
| created =
| established =
| designated =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coordinates</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area_km2</code><br/><code>area_sqmi</code><br/><code>area_acre</code><br/><code>area_ha</code> || Area of the protected area, with autoconversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>length_km</code><br/><code>length_mi</code>|| Length of protected area, with autoconversion to metric/imperial units.
|-
|<code>length</code>|| Length of protected area, e.g., length of a trail.
|-
|<code>width_km</code><br/><code>width_mi</code>|| Width of protected area, with autoconversion to metric/imperial units.
|-
|<code>width</code>|| Width of protected area. Can be used with {{para|length}} to describe rough shape.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods|converted=1}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
32qm8k5nwwl5258rb958oquw7u9jyvg
667845
667844
2016-12-23T18:26:07Z
Hike395
26964
add area_ref parameter
667845
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| region =
| area_ha =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| x =
| y =
| x% =
| y% =
| coordinates =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| elevation =
| designation =
| authorized =
| created =
| established =
| designated =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coordinates</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area_km2</code><br/><code>area_sqmi</code><br/><code>area_acre</code><br/><code>area_ha</code> || Area of the protected area, with autoconversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>area_ref</code> || Reference to reliable source for area value.
|-
|<code>length_km</code><br/><code>length_mi</code>|| Length of protected area, with autoconversion to metric/imperial units.
|-
|<code>length</code>|| Length of protected area, e.g., length of a trail.
|-
|<code>width_km</code><br/><code>width_mi</code>|| Width of protected area, with autoconversion to metric/imperial units.
|-
|<code>width</code>|| Width of protected area. Can be used with {{para|length}} to describe rough shape.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods|converted=1}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"type": {
"label": "Type",
"type": "string",
"required": false,
"description": "Type is one way to specify the scale of maps generated by external map websites",
"default": "landmark"
},
"scale": {
"label": "Scale",
"type": "string",
"required": false,
"description": "Determines the zoom factor for external map websites."
},
"region": {
"label": "Region",
"type": "string",
"required": false,
"description": "Country code in which the protected area is located"
},
"source": {
"label": "Source",
"type": "string",
"required": false,
"description": "Source of the coordinate data of the protected area"
},
"format": {
"label": "Format",
"type": "string",
"required": false,
"description": "dms for degrees, minutes and seconds, and dec for decimal degrees",
"default": "dms"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"display": {
"label": "Display",
"type": "string",
"required": false,
"description": "Determines where the coordinates will be displayed",
"default": "inline,title"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
2i9g7t866x4e332vfd2cxuoayd5ot5m
667847
667845
2016-12-30T16:13:07Z
98.230.192.179
these are not in the template
667847
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| x =
| y =
| x% =
| y% =
| coordinates =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| elevation =
| designation =
| authorized =
| created =
| established =
| designated =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coordinates</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area_km2</code><br/><code>area_sqmi</code><br/><code>area_acre</code><br/><code>area_ha</code> || Area of the protected area, with autoconversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>area_ref</code> || Reference to reliable source for area value.
|-
|<code>length_km</code><br/><code>length_mi</code>|| Length of protected area, with autoconversion to metric/imperial units.
|-
|<code>length</code>|| Length of protected area, e.g., length of a trail.
|-
|<code>width_km</code><br/><code>width_mi</code>|| Width of protected area, with autoconversion to metric/imperial units.
|-
|<code>width</code>|| Width of protected area. Can be used with {{para|length}} to describe rough shape.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods|converted=1}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"lat_d": {
"label": "Latitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of latitude of protected area"
},
"lat_m": {
"label": "Latitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of latitude of protected area"
},
"lat_s": {
"label": "Latitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of latitude of protected area"
},
"lat_NS": {
"label": "Latitude(North/South)",
"type": "string",
"required": false,
"description": "N if protected area is north of equator, S if protected area is south of equator"
},
"long_d": {
"label": "Longitude(Degrees)",
"type": "number",
"required": false,
"description": "Degrees of longitude of protected area"
},
"long_m": {
"label": "Longitude(Minutes)",
"type": "number",
"required": false,
"description": "Minutes of longitude of protected area"
},
"long_s": {
"label": "Longitude(Seconds)",
"type": "number",
"required": false,
"description": "Seconds of longitude of protected area"
},
"long_EW": {
"label": "Longitude(East/West)",
"type": "string",
"required": false,
"description": "E if protected area is East of the prime meridian, W if protected area is west of the prime meridian"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
bxxafi2ezlmnugw0rnr6bx36sekg08v
667848
667847
2016-12-30T16:13:53Z
98.230.192.179
these are not in the template
667848
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
;Basic usage
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| established =
| designated =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}
</nowiki></pre></div>
;Full code
{{Hidden begin
| titlestyle = background:palegreen;text-align:center;
| title = Full syntax
}}
<div style="width:20em; background:white; border:1px solid rgb(153, 153, 153); padding:1em;"><pre style="overflow:auto;"><nowiki>
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| x =
| y =
| x% =
| y% =
| coordinates =
| coords_ref =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| elevation =
| designation =
| authorized =
| created =
| established =
| designated =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}
</nowiki></pre></div>
{{Hidden end}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
|<code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
|<code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
|<code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
|<code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
|<code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
|<code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
|<code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
|<code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
|<code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
|<code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
|<code>map_caption</code> || Text to be displayed below the map image, if required.
|-
|<code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
|<code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
|<code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
|<code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
|<code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
|<code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
|<code>nearest_city<br />nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
|<code>coordinates</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
|<code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>x</code><br/><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
|<code>x%</code><br/><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
|<code>area_km2</code><br/><code>area_sqmi</code><br/><code>area_acre</code><br/><code>area_ha</code> || Area of the protected area, with autoconversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
|<code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
|<code>area_ref</code> || Reference to reliable source for area value.
|-
|<code>length_km</code><br/><code>length_mi</code>|| Length of protected area, with autoconversion to metric/imperial units.
|-
|<code>length</code>|| Length of protected area, e.g., length of a trail.
|-
|<code>width_km</code><br/><code>width_mi</code>|| Width of protected area, with autoconversion to metric/imperial units.
|-
|<code>width</code>|| Width of protected area. Can be used with {{para|length}} to describe rough shape.
|-
|<code>designation</code> ||
|-
|<code>authorized<br/>created<br/>established<br/>designated</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
|<code>visitation_num</code> || The number of visitors in a recent year if known.
|-
|<code>visitation_year</code> || The year during which the number of visitors was counted.
|-
|<code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap|<code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
|<code>governing_body<br/>administrator<br/>operator<br/>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
|<code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
|<code>website</code> || The full URL of the official website with no formatting. For example: {{nowrap|<code><nowiki>http://www.example.org/</nowiki></code>}}.
|-
|<code>url</code> || Displays a url with no label.
|-
|<code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
|<code>embedded</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods|converted=1}}
==TemplateData==
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area Covered by protected area"
},
"established": {
"label": "Established",
"type": "line",
"required": false,
"description": "The date on which the protected area was created"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"url": {
"label": "Url",
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
17f3uha5jqgg9iize0f76wlvzt16cth
667850
667848
2017-02-18T07:41:14Z
Zyxw
14644
add {{Parameter names example}}, update parameter descriptions, misc formatting
667850
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
{{Parameter names example <!-- | child --> | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map | map_width | relief | label | label_position | map_caption | map_alt | mark | marker_size | coordinates | coords | coords_ref | locator_x | locator_y | x% | y% | x | y | location | nearest_city | nearest_town | length <!-- | length_km | length_mi --> | width <!-- | width_km | width_mi --> | area <!-- | area_km2 | area_sqmi | area_acre | area_ha --> | area_ref | elevation | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website <!-- | url --> | embedded <!-- | embedded1 --> | embedded2 }}
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| x =
| y =
| x% =
| y% =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>x</code><br /><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
| <code>x%</code><br /><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods|converted=1}}
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
kgovx1fqz8uz29xyo7awp6gqgozia67
667852
667850
2017-02-21T06:15:10Z
Hike395
26964
rm locator_x and locator_y
667852
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
{{Parameter names example <!-- | child --> | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map | map_width | relief | label | label_position | map_caption | map_alt | mark | marker_size | coordinates | coords | coords_ref | x% | y% | x | y | location | nearest_city | nearest_town | length <!-- | length_km | length_mi --> | width <!-- | width_km | width_mi --> | area <!-- | area_km2 | area_sqmi | area_acre | area_ha --> | area_ref | elevation | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website <!-- | url --> | embedded <!-- | embedded1 --> | embedded2 }}
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| x =
| y =
| x% =
| y% =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>x</code><br /><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
| <code>x%</code><br /><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods|converted=1}}
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
iyl6lyj26wf3hifegvlj18t7pxx8h2l
667855
667852
2017-02-21T06:29:50Z
Hike395
26964
/* Usage */ example seems broken
667855
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
These selected parameters can be used to form a completely functional infobox and the extra parameters listed below can also be added. This markup can be pasted into a new article. See [[#Examples|below]] for working examples.
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_alt =
| photo_caption =
| photo_width =
| map =
| map_alt =
| map_caption =
| map_width =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| x =
| y =
| x% =
| y% =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>x</code><br /><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
| <code>x%</code><br /><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods|converted=1}}
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
sn8pz45fqgn8pg5guet59ppoxiy8voi
667857
667855
2017-02-23T09:20:20Z
Zyxw
14644
restore {{parameter names example}} with location map parameter commented out to avoid error message
667857
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example <!-- | child --> | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption <!-- | map --> | map_width | relief | label | label_position | map_caption | map_alt | mark | marker_size | coordinates | coords | coords_ref <!-- | x% | y% | x | y --> | location | nearest_city | nearest_town | length <!-- | length_km | length_mi --> | width <!-- | width_km | width_mi --> | area <!-- | area_km2 | area_sqmi | area_acre | area_ha --> | area_ref | elevation | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website <!-- | url --> | embedded <!-- | embedded1 --> | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map =
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map =
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| x =
| y =
| x% =
| y% =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>x</code><br /><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
| <code>x%</code><br /><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods|converted=1}}
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
qvduw7j38wk3yz3p2knbad6suszjtd9
667859
667857
2017-02-23T09:36:48Z
Zyxw
14644
update example
667859
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map =
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map =
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| x =
| y =
| x% =
| y% =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>x</code><br /><code>y</code> || Specifies the position of the location marker on a map image. The coordinates of the marker in pixels based on a map with a width of 1000 pixels. The template will scale these values for proper display. See [[#Display a marker on any map image using the x and y parameters|below]].
|-
| <code>x%</code><br /><code>y%</code> || Specifies the position of the location marker on a map image. <code>x%</code> specifies the percentage of the distance across the image from the left edge and <code>y%</code> specifies the percentage of the distance down from the top edge. See [[#Display a marker on any map image using the x% and y% parameters|below]].
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used. There are three methods by which maps showing a marker can be generated.
{{Infobox map/Map display methods|converted=1}}
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
jhxyn5cffg5ib82c07d1sp8nrr1mxpw
667861
667859
2017-03-12T13:09:08Z
Hike395
26964
update doc, subst doc to edit
667861
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map =
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map =
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
<!--
This documentation can be transcluded in any Infobox template that uses Infobox map.
The Examples shown are a bit generic but they will be displayed using the appropriate
template. Transclude this page below a second level header.
If the infobox was converted after the August 2016 coordinates RFC (see [[Help:Coordinates in infoboxes]]), use parameter |converted=1
-->
=== Display a marker on a map using a template and geographic coordinates ===
{{#if:1|
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{{{#ifeq:{{BASEPAGENAME}}|Infobox map|Infobox park|{{BASEPAGENAME}}}}
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|00|00|N|102|00|00|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
{{#tag:pre|
{{((}}{{#ifeq:{{BASEPAGENAME}}|Infobox map|Infobox park|{{BASEPAGENAME}}}}
{{!}} name = Four Corners, Canada
{{!}} map = Canada
{{!}} map_caption = Example using geographic coordinates
{{!}} coordinates = {{((}}coord{{!}}60{{!}}00{{!}}00{{!}}N{{!}}102{{!}}00{{!}}00{{!}}W{{!}}display=inline,title{{))}}
{{))}}|style="overflow:auto;"}}
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
|
A marker can be superimposed on a map using one of a set of special map templates. To display a marker the geographic coordinates must be specified using the parameters <code>lat_d</code>, <code>long_d</code>, etc. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{{{#ifeq:{{BASEPAGENAME}}|Infobox map|Infobox park|{{BASEPAGENAME}}}}
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline}} <!-- because this no longer works -->
}}
{{#tag:pre|
{{((}}{{#ifeq:{{BASEPAGENAME}}|Infobox map|Infobox park|{{BASEPAGENAME}}}}
{{!}} name = Four Corners, Canada
{{!}} map = Canada
{{!}} map_caption = Example using geographic coordinates
{{!}} lat_d = 60 {{!}} lat_m = 00 {{!}} lat_s = 00 {{!}} lat_NS = N
{{!}} long_d = 102 {{!}} long_m = 00 {{!}} long_s = 00 {{!}} long_EW = W
{{))}}|style="overflow:auto;"}}
}}
{{clear}}
=== Display a marker on any map image using the <code>x</code> and <code>y</code> parameters ===
The values for the <code>x</code> and <code>y</code> parameters are the pixel coordinates of the location mark when the image is scaled to a width of 1000 pixels.
:<code>x</code> is the pixel offset for the mark from the left edge of an image 1000px wide.
:<code>y</code> is the pixel offset for the mark from the top edge of an image 1000px wide.
There are at least two ways of obtaining these values:
#Download the image from the image's [[Help:file page|file page]] to your computer. Open the image in a [[graphics software|graphics editor]], such as [[GIMP]] or [[XnView]]. Scale (resize) the image to a width of 1000px and then note the x, y coordinates when the [[mouse cursor|cursor]] points to the desired location. Use these values directly.
#Download the image from the image's [[Help:file page|file page]] to your computer. Open the image in any [[image viewer]] that displays the coordinates of the cursor position, such as [[Paint (software)|Paint]] from Microsoft. Note the x, y coordinates when the [[mouse cursor|cursor]] points to the location. Then:
::{{math|size=14pt|{{sfrac|1000{{·}}x'|w}} {{=}} {{math|size=13pt|x}}}} and {{math|size=14pt|{{sfrac|1000{{·}}y'|w}} {{=}} {{math|size=13pt|y}}}}
::where {{math|size=13pt|x'}} and {{math|size=13pt|y'}} are the cursor coordinates, {{math|size=13pt|w}} is the width of the image displayed on your computer and {{math|size=13pt|x}} and {{math|size=13pt|y}} are the values to assign to the <code>x</code> and <code>y</code> parameters.
{{{{#ifeq:{{BASEPAGENAME}}|Infobox map|Infobox park|{{BASEPAGENAME}}}}
| name = Four Corners, Canada
| map = Canada location map.svg
| map_caption = Example using the x and y parameters
| x = 369
| y = 487
}}
{{#tag:pre|
{{((}}{{#ifeq:{{BASEPAGENAME}}|Infobox map|Infobox park|{{BASEPAGENAME}}}}
{{!}} name = Four Corners, Canada
{{!}} map = Canada location map.svg
{{!}} map_caption = Example using the x and y parameters
{{!}} x = 369
{{!}} y = 487
{{))}}|style="overflow:auto;"}}
{{clear}}
=== Display a marker on any map image using the <code>x%</code> and <code>y%</code> parameters ===
:x% specifies the percent of the distance across the image from the left edge.
:y% specifies the percent of the distance down from the top edge.
In the following example the marker is 36.9% of the way across and 57.4% of the way down.
{{{{#ifeq:{{BASEPAGENAME}}|Infobox map|Infobox park|{{BASEPAGENAME}}}}
| name = Four Corners, Canada
| map = Relief map of Canada.png
| map_caption = Example using the x% and y% parameters
| x% = 36.9
| y% = 57.4
}}
{{#tag:pre|
{{((}}{{#ifeq:{{BASEPAGENAME}}|Infobox map|Infobox park|{{BASEPAGENAME}}}}
{{!}} name = Four Corners, Canada
{{!}} map = Relief map of Canada.png
{{!}} map_caption = Example using the x% and y% parameters
{{!}} x% = 36.9
{{!}} y% = 57.4
{{))}}|style="overflow:auto;"}}
{{clear}}
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
lld3tvybih6a6pvos4voce77gfnhz4c
667863
667861
2017-03-12T13:10:29Z
Hike395
26964
/* Map display methods */ cleanup
667863
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map =
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map =
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
tnm5brj7kq2ecfs74dpkbwl7ggv5ph7
667865
667863
2017-05-21T14:36:09Z
Frietjes
14509
/* Usage */
667865
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map =
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map =
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| map_width =
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
3odnl8ce1ql7uxxub68revn41ngfrw1
667867
667865
2017-06-15T14:09:20Z
Frietjes
14509
/* With embedded alternate map */
667867
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map =
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map =
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
stvlpibhdeir6jvsate1cke23hf13k1
667868
667867
2017-06-17T13:23:46Z
Frietjes
14509
/* Usage */
667868
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the map to be displayed. See [[#Map display methods|Map display methods]].
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
ma0nzb02qfydsumln5u2e6u1fb9c98s
667870
667868
2017-06-17T13:25:09Z
Frietjes
14509
/* Parameter descriptions */
667870
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
151jcmibmnuu7zi591et7omt67wvwho
667872
667870
2017-06-17T13:26:23Z
Frietjes
14509
/* TemplateData */
667872
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
=== Coordinate syntax ===
See [[Template:Infobox map/coordinate syntax]].
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
g8kjpqqqi13hkieo7x6j8w1ifmi63o0
667873
667872
2017-06-22T12:59:14Z
Frietjes
14509
667873
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Infobox_map#Marks]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
au9pot0a1pa6i87grjx62exvs1vqe9t
667874
667873
2017-06-22T15:09:08Z
Frietjes
14509
667874
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
q8yqn36uthhjt95c882vsoaxm93aiob
667875
667874
2018-08-30T09:07:37Z
Chongkian
4452
small correction
667875
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref =
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
rjmv8zvsk8haw9mghegtzsi9jl80mda
667876
667875
2018-11-12T00:48:16Z
Zackmann08
14653
/* Usage */ adding iucn_ref
667876
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref =
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
77ddtv493uzfjtosad9f42rpfidcptd
667877
667876
2018-11-12T00:48:50Z
Zackmann08
14653
/* Parameter descriptions */
667877
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref =
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|TemplateData}}
{{TemplateData header}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
g6lja13lk7p189kqriiesqsn7z5prmu
667878
667877
2018-11-26T02:40:07Z
Zyxw
14644
/* TemplateData */update TemplateData header
667878
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref =
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
gmkm7nf4ayzasshmp9u2e96jwak0a67
667880
667878
2019-04-12T20:25:11Z
John of Reading
26945
Typo fixing, replaced: can can → can
667880
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref =
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
rvfc3915k746hxqolvz5kunrwjccbf3
667882
667880
2019-10-08T08:02:04Z
Graham87
6230
/* Alternate parameters */ add "the"
667882
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref =
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
0jnbwv4oihuh4oukl3qzcur9yaqet8y
667883
667882
2020-04-25T20:59:54Z
Vanisaac
27024
/* See also */clean up per [[WP:CAT#T]] and [[WP:AWBREQ]] add template:Sandbox other
667883
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref =
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
9askjedohm7dirigxy3jx7xse435u4r
667884
667883
2020-06-26T20:42:34Z
JHunterJ
37923
/* Usage */ +AlternativeMap
667884
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| AlternativeMap =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref =
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
7cxv4drk7qym9s3n1dnvvtwtipezjvq
667885
667884
2020-06-26T20:45:03Z
JHunterJ
37923
/* Parameter descriptions */ +AlternativeMap
667885
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| AlternativeMap =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref =
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Geography infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
qbwvvz4fk9mk89s2er3wvlik20zo6iw
667886
667885
2020-09-20T23:51:39Z
TerraCyprus
46721
geography is a science concerned with places and processes, this infobox is to be used on articles about specific places
667886
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| AlternativeMap =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref =
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "string/wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest City",
"aliases": ["nearest_town"],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": ["coords"],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": ["authorized", "created", "designated"],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": ["administrator", "operator", "owner"],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": ["url"],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": ["embedded1"],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
grv8wagrsh8n5d8oqwk66t53s6dfiu8
667887
667886
2020-11-13T21:12:45Z
Funandtrvl
4026
update TD
667887
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| AlternativeMap =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| nearest_town =
| coordinates =
| coords_ref =
| length =
| length_mi =
| length_km =
| width =
| width_mi =
| width_km =
| area =
| area_ha =
| area_acre =
| area_km2 =
| area_sqmi =
| area_ref =
| elevation =
| elevation_avg =
| elevation_min =
| elevation_max =
| dimensions =
| designation =
| authorized =
| created =
| designated =
| established =
| named_for =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
| embedded1 =
| embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
59q94byd1ixv19u64utmz9ye9tnfees
667888
667887
2021-02-15T05:12:23Z
Shkuru Afshar
27056
667888
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> ||
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
40sw2a7ekbsigtadcb765rjffie5ew9
667889
667888
2021-02-15T05:46:20Z
Shkuru Afshar
27056
667889
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[National Parks and Wildlife Service (New South Wales)]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
k04n2mdgincdckjyin5i9zsyjs77p7y
667890
667889
2021-10-11T04:42:59Z
Botaneporte
63617
NSW National Parks & Wildlife Service x 2
667890
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
kq7gzhmyxnqra8z8jlww8hd2078ur2d
667891
667890
2022-08-08T06:41:44Z
Paine Ellsworth
4319
High-use template
667891
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
tlxm1n3xb4jtyjbpl1nmbyz8yesaqud
667893
667891
2022-08-13T03:12:08Z
Paine Ellsworth
4319
update /doc
667893
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</pre>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
5p0p1cmka4m5xkbko09ieagfwcyo8qs
667895
667893
2023-02-28T07:50:26Z
Cedar101
28398
/* With no photograph or map */ syntaxhighlight
667895
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<pre style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</pre>
|<pre style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</pre>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="moin" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
fkx9pdwo2gz0t0frbbofpip7j3u8pfo
667898
667895
2023-05-10T12:36:33Z
WOSlinker
3423
syntaxhighlight lang="wikitext"
667898
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</pre>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</pre>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</pre>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<pre style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</pre>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<pre>
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</pre>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
1otdlxuxz1tiswkyp8p90ptcipnbf8b
667900
667898
2023-05-18T17:20:16Z
WOSlinker
3423
syntaxhighlight lang="wikitext"
667900
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</syntaxhighlight>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {}
}
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
ej9p8zvk074cjw1zs2wvflm7cilaq9h
667902
667900
2023-12-08T03:11:38Z
Logan
2711
/* TemplateData */ recommend block format
667902
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</syntaxhighlight>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {}
},
"format": "block"
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
qgzbboeai4rialitj2r878nd2h3nltb
667905
667902
2024-02-25T03:03:07Z
SWinxy
27031
Document logo parameters
667905
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</syntaxhighlight>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
s65u2zv35x6uin80rgqmr6zudsc8o0q
667907
667905
2024-11-04T11:00:36Z
Joy
14543
document the implementation of mapframe
667907
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| mapframe = Enabled (onByDefault) if none of the other map parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</syntaxhighlight>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
39pejqdbsi8ijbch5wkp73tx363bvwd
667911
667907
2024-11-04T11:08:36Z
Joy
14543
/* Mapframe maps */ document mapframe-marker default from the code
667911
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| mapframe = Enabled (onByDefault) if none of the other map parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}
| mapframe-marker = natural
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</syntaxhighlight>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
2x32gofx40gu6subu1q0f1v2oib80yx
667913
667911
2024-11-04T11:24:49Z
Joy
14543
document geohack-type, mapframe-zoom logic
667913
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| mapframe = Enabled (onByDefault) if none of the other map parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</syntaxhighlight>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
2zoi1iio3tvlrwmet10g6mls5ykz730
667914
667913
2025-03-23T22:05:31Z
Joy
14543
/* Mapframe maps */ update spec after latest change
667914
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| mapframe = Enabled (onByDefault) if none of the other map parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</syntaxhighlight>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
co5olp85ede42lpoig3wcmngubq5kpa
667917
667914
2025-03-23T22:16:34Z
Joy
14543
/* Mapframe maps */ update spec after latest change
667917
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| mapframe = Enabled (onByDefault) if none of the other map parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</syntaxhighlight>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
a13lwx4k0kbyspyedv23bfxac2z9dlq
667919
667917
2025-04-05T23:04:37Z
Joy
14543
/* Mapframe maps */ simplify onByDefault
667919
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of the other map parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|display=inline <!-- for documentation page only - not general practice --> }}
}}</syntaxhighlight>
By default, {{tl|Coord}} displays in the infobox only in the page title. Parameter {{para|display|inline,title}} can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
8hir6onsua8fn3hiimvx6nxgtmzxgpc
667921
667919
2025-04-20T19:27:35Z
Joy
14543
removed misinformation about the default behavior of {{coord}}
667921
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of the other map parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
hoa0iz8auwgi84x6jxf3i0hccmzy4eg
667923
667921
2025-10-14T03:10:21Z
Zackmann08
14653
/* TemplateData */ missing data
667923
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of the other map parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
btqduq5t57pclpm8q12kqvdydhn7xq2
667925
667923
2025-10-19T06:12:41Z
Zackmann08
14653
/* Tracking categories */
667925
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of the other map parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using infobox protected area with conflicting parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
8onflh9ypjv10l9un1woi1qzcf3mibe
667927
667925
2025-10-20T14:46:36Z
Joy
14543
/* Mapframe maps */ document updates in the code
667927
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using infobox protected area with conflicting parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
ni9iw2ak6z6udu1ygj9x6ztfx53ng6m
667928
667927
2025-11-15T02:50:55Z
Zackmann08
14653
wrong module
667928
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph only ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using infobox protected area with conflicting parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
p7aguhpawiqwwgvk4sxue7wl4jyft7z
667929
667928
2025-11-16T12:45:38Z
Hike395
26964
/* With photograph only */ rename example for clarity
667929
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With no photograph or map ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using infobox protected area with conflicting parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
tdhl2me7yw3gqk0mpxk461e6k8hrv45
667930
667929
2025-11-16T12:46:14Z
Hike395
26964
/* With no photograph or map */ rename example for clarity
667930
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using infobox protected area with conflicting parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
19cw8u3jleo6yrq660s0tcisj6jkqr9
667931
667930
2025-11-16T13:03:16Z
Joy
14543
/* With photograph + default mapframe */ zoom out a bit to provide more context, per Talk
667931
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using infobox protected area with conflicting parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
g7wetgvdfhw4l6bj6d3lh8prv4rc4s7
667932
667931
2025-11-16T13:03:36Z
Joy
14543
/* With photograph + default mapframe */ ditto in the example
667932
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using infobox protected area with conflicting parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
bx1kzcc10fic2d8gh9xjssfwt7zu1x5
667934
667932
2025-11-16T13:19:44Z
Joy
14543
/* With default mapframe only */ include the qid from the article to be more accurate to what happens in practice
667934
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
| qid = Q702540<!-- only explicitly listed in the code here, at the [[Harz National Park]] it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using infobox protected area with conflicting parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
iecplabnacaauajmp1u7kzxpckg6241
667935
667934
2025-11-16T13:20:48Z
Joy
14543
/* With photograph + default mapframe */ ditto
667935
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| qid = Q180402<!-- only explicitly listed in this code example, in the article it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| scale = 300000
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
| qid = Q702540<!-- only explicitly listed in the code here, at the [[Harz National Park]] it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using infobox protected area with conflicting parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
f47pthksdd73ycxjnx4kc9ut6lneau1
667936
667935
2025-11-16T17:20:12Z
Joy
14543
rm broken syntax within the highlighting example
667936
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined using {{tl|map zoom}} based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| qid = Q180402<!-- only explicitly listed in this code example, in the article it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
| qid = Q702540<!-- only explicitly listed in the code here, at the [[Harz National Park]] it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using infobox protected area with conflicting parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
3nezx6vhpkwwo9nw0k53cd2qdk9yx3s
667938
667936
2025-11-24T06:34:48Z
Gonnym
14511
[[User:Zackmann08]] the template was deleted, please verify this is still correct
667938
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| qid = Q180402<!-- only explicitly listed in this code example, in the article it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
| qid = Q702540<!-- only explicitly listed in the code here, at the [[Harz National Park]] it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using infobox protected area with conflicting parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
e9lp5l2ssiennu4tdxydve2u1g19w0k
667940
667938
2025-11-24T06:41:57Z
Zackmann08
14653
/* Mapframe maps */ +explanation
667940
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}. Can be manually set by {{para|mapframe-zoom}}.
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| qid = Q180402<!-- only explicitly listed in this code example, in the article it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
| qid = Q702540<!-- only explicitly listed in the code here, at the [[Harz National Park]] it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
* {{clc|Pages using infobox protected area with unknown parameters}}
* {{clc|Pages using infobox protected area with conflicting parameters}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
km0b4v06gdh203un5ewqiyitbiklxss
667942
667940
2026-02-22T00:36:34Z
Zackmann08
14653
/* Tracking categories */
667942
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | photo | photo_width | photo_alt | photo_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | embedded | embedded2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| photo =
| photo_width =
| photo_alt =
| photo_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| embedded =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|photo =
|photo_width =
|photo_alt =
|photo_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|embedded =
|embedded1 =
|embedded2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>photo</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>photo_width</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>photo_width=200</code> and not <code>photo_width=200px</code>.
|-
| <code>photo_alt</code> || Alt text for the photo, for visually impaired readers. See [[WP:ALT]].
|-
| <code>photo_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>embedded</code><br /><code>embedded1</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>embedded2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}. Can be manually set by {{para|mapframe-zoom}}.
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With photograph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| qid = Q180402<!-- only explicitly listed in this code example, in the article it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| photo = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| photo_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| photo_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
| qid = Q702540<!-- only explicitly listed in the code here, at the [[Harz National Park]] it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With photograph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| photo = Dry Island Provincial Park2.jpg
| photo_alt = A green valley with a river and a road running somewhat parallel to the river
| photo_caption = Panoramic view
| photo_width = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| embedded = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"photo": {
"label": "Photo",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"photo_width": {
"label": "Photo Width",
"type": "number",
"required": false,
"description": "Width of the image given by photo"
},
"photo_alt": {
"label": "Photo Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"photo_caption": {
"label": "Photo Caption",
"type": "string",
"required": false,
"description": "Caption for the photo"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"embedded": {
"label": "Embedded 1",
"aliases": [
"embedded1"
],
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"embedded2": {
"label": "Embedded 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"photo",
"photo_width",
"photo_alt",
"photo_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"embedded",
"embedded2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for",
"module"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
{{Infobox tracking cats}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
cg4mtve6ptnmp6pgh5vtmbyf64kgxjc
667944
667942
2026-02-22T00:40:29Z
Zackmann08
14653
Cleaning up in accordance with deprecated parameters
667944
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | image | image_size | image_alt | image_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | module | module2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| image =
| image_size =
| image_alt =
| image_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| child =
| module =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|image =
|image_size =
|image_alt =
|image_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city =
|nearest_town =
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|module =
|module =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>image</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>image_size</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>image_size=200</code> and not <code>image_size=200px</code>.
|-
| <code>image_alt</code> || Alt text for the image, for visually impaired readers. See [[WP:ALT]].
|-
| <code>image_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>module</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>module2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}. Can be manually set by {{para|mapframe-zoom}}.
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With imagegraph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| image = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| image_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| image_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| qid = Q180402<!-- only explicitly listed in this code example, in the article it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| image = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| image_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| image_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
| qid = Q702540<!-- only explicitly listed in the code here, at the [[Harz National Park]] it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With imagegraph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| image = Dry Island Provincial Park2.jpg
| image_alt = A green valley with a river and a road running somewhat parallel to the river
| image_caption = Panoramic view
| image_size = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| image = Dry Island Provincial Park2.jpg
| image_alt = A green valley with a river and a road running somewhat parallel to the river
| image_caption = Panoramic view
| image_size = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| module = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| module = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"image": {
"label": "image",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"image_size": {
"label": "image Width",
"type": "number",
"required": false,
"description": "Width of the image given by image"
},
"image_alt": {
"label": "image Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"image_caption": {
"label": "image Caption",
"type": "string",
"required": false,
"description": "Caption for the image"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"module": {
"label": "Module",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"module2": {
"label": "Module 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"image",
"image_size",
"image_alt",
"image_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"module",
"module2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
{{Infobox tracking cats}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
ghw52w70uzz00mgeaexumis5d7rk4ln
667946
667944
2026-02-22T00:55:20Z
Zackmann08
14653
/* Usage */ Cleaning up syntax using [[:en:User:Zackmann08/scripts/indent|indent.js]]
667946
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | image | image_size | image_alt | image_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | module | module2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| image =
| image_size =
| image_alt =
| image_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| module =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|image =
|image_size =
|image_alt =
|image_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city = <!-- Do not use both -->
|nearest_town = <!-- Do not use both -->
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|module =
|module2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>image</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>image_size</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>image_size=200</code> and not <code>image_size=200px</code>.
|-
| <code>image_alt</code> || Alt text for the image, for visually impaired readers. See [[WP:ALT]].
|-
| <code>image_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>module</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>module2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}. Can be manually set by {{para|mapframe-zoom}}.
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With imagegraph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| image = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| image_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| image_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| qid = Q180402<!-- only explicitly listed in this code example, in the article it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| image = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| image_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| image_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
| qid = Q702540<!-- only explicitly listed in the code here, at the [[Harz National Park]] it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With imagegraph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| image = Dry Island Provincial Park2.jpg
| image_alt = A green valley with a river and a road running somewhat parallel to the river
| image_caption = Panoramic view
| image_size = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| image = Dry Island Provincial Park2.jpg
| image_alt = A green valley with a river and a road running somewhat parallel to the river
| image_caption = Panoramic view
| image_size = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| module = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| module = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"image": {
"label": "image",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"image_size": {
"label": "image Width",
"type": "number",
"required": false,
"description": "Width of the image given by image"
},
"image_alt": {
"label": "image Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"image_caption": {
"label": "image Caption",
"type": "string",
"required": false,
"description": "Caption for the image"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"aliases": [
"coords"
],
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"module": {
"label": "Module",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"module2": {
"label": "Module 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"image",
"image_size",
"image_alt",
"image_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"module",
"module2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
{{Infobox tracking cats}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
daoep77igrscujcdt8f0vymy8e0wzn5
667948
667946
2026-02-25T05:02:28Z
Zackmann08
14653
/* TemplateData */
667948
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | image | image_size | image_alt | image_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | module | module2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| image =
| image_size =
| image_alt =
| image_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| module =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|image =
|image_size =
|image_alt =
|image_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city = <!-- Do not use both -->
|nearest_town = <!-- Do not use both -->
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|module =
|module2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>image</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>image_size</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>image_size=200</code> and not <code>image_size=200px</code>.
|-
| <code>image_alt</code> || Alt text for the image, for visually impaired readers. See [[WP:ALT]].
|-
| <code>image_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>module</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>module2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}. Can be manually set by {{para|mapframe-zoom}}.
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With imagegraph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| image = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| image_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| image_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| qid = Q180402<!-- only explicitly listed in this code example, in the article it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| image = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| image_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| image_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
| qid = Q702540<!-- only explicitly listed in the code here, at the [[Harz National Park]] it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With imagegraph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| image = Dry Island Provincial Park2.jpg
| image_alt = A green valley with a river and a road running somewhat parallel to the river
| image_caption = Panoramic view
| image_size = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| image = Dry Island Provincial Park2.jpg
| image_alt = A green valley with a river and a road running somewhat parallel to the river
| image_caption = Panoramic view
| image_size = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| module = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| module = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"image": {
"label": "image",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"image_size": {
"label": "image Width",
"type": "number",
"required": false,
"description": "Width of the image given by image"
},
"image_alt": {
"label": "image Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"image_caption": {
"label": "image Caption",
"type": "string",
"required": false,
"description": "Caption for the image"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"module": {
"label": "Module",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"module2": {
"label": "Module 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"image",
"image_size",
"image_alt",
"image_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"module",
"module2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
{{Infobox tracking cats}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
2jq2gyivsv26x6svgdoil2wyi1j3f6s
667966
667948
2026-06-29T12:40:49Z
King ChristLike
13051
227 revisions imported from [[:en:Template:Infobox_protected_area/doc]]
667948
wikitext
text/x-wiki
{{Documentation subpage}}
<!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])-->
{{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}}
{{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Wikidata|Module:Infobox mapframe}}
This template can be used to generate an infobox for a protected area. It is part of the [[Wikipedia:WikiProject Protected areas|Protected areas WikiProject]].
== Usage ==
The "basic usage" templates includes selected parameters which can be used to form a completely functional infobox. The "full usage" template includes all of the extra parameters which may be added. Either can be pasted into a new article. See [[#Examples|below]] for working examples.
{{Parameter names example | name | alt_name | iucn_category | logo | logo_caption | logo_upright | logo_alt | image | image_size | image_alt | image_caption | map=Earth | map_caption | coordinates={{coord|0|0|type:landmark|display=inline}} | coords_ref | location | nearest_city | nearest_town | length | width | area | area_ref | elevation = {{{elevation}}} ''or''<br>{{{elevation_avg}}}, {{{elevation_min}}}, {{{elevation_max}}} | dimensions | designation | authorized | created | established | designated | disestablished | named_for | visitation_num | visitation_year | visitation_ref | governing_body | administrator | operator | owner | world_heritage_site | website | module | module2 }}
{|
! Basic usage
! Full usage
|- style="vertical-align:top;"
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name =
| alt_name =
| iucn_category =
| iucn_ref =
| logo =
| logo_alt =
| logo_upright =
| logo_caption =
| image =
| image_size =
| image_alt =
| image_caption =
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| mapframe = <!-- "yes" to show an interactive map -->
| location =
| nearest_city =
| coordinates =
| coords_ref =
| area_ha =
| designation =
| authorized =
| created =
| designated =
| established =
| disestablished =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator =
| owner =
| world_heritage_site =
| website =
| url =
| module =
}}</syntaxhighlight>
|<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
|name =
|alt_name =
|iucn_category =
|iucn_ref =
|logo =
|logo_alt =
|logo_upright =
|logo_caption =
|image =
|image_size =
|image_alt =
|image_caption =
|map = <!-- or |map_image = -->
|map_width =
|map_alt =
|map_caption =
|AlternativeMap =
|relief =
|label =
|label_position =
|mark =
|marker_size =
|mapframe = <!-- "yes" to show an interactive map -->
|location =
|nearest_city = <!-- Do not use both -->
|nearest_town = <!-- Do not use both -->
|coordinates =
|coords_ref =
|length =
|length_mi =
|length_km =
|width =
|width_mi =
|width_km =
|area =
|area_ha =
|area_acre =
|area_km2 =
|area_sqmi =
|area_ref =
|elevation =
|elevation_avg =
|elevation_min =
|elevation_max =
|dimensions =
|designation =
|authorized =
|created =
|designated =
|established =
|disestablished =
|named_for =
|visitation_num =
|visitation_year =
|visitation_ref =
|governing_body =
|administrator =
|operator =
|owner =
|world_heritage_site =
|website =
|url =
|child =
|module =
|module2 =
}}</syntaxhighlight>
|}
{{clear}}
== Parameter descriptions ==
This table describes all parameters which can be used in building infoboxes. Only the <code>name</code> parameter must be assigned a value.
{| class="wikitable" style="width: 97%;"
! style="width: 14%" | Field name || Description
|-
| <code>name</code> || Required. The official name of the protected area. It will be displayed at the top of the infobox. In most cases this should be the same as the article name less any disambiguation. For example if the article title is [[Mount Washington (New Hampshire)]] then <code>name=Mount Washington</code>.
|-
| <code>alt_name</code> || If there is a common English name for the area use for the <code>name</code> parameter. This parameter can be used to display the name in the local language or for an alternate English name if it is commonly used. If you would like to italicize the text use wiki markup.
|-
| <code>iucn_category</code> || Strongly recommended. The [[World Commission on Protected Areas#IUCN Categories of Protected Area|IUCN]] category associated with the protected area. Valid values are Ia, Ib, II, III, IV, V, or VI. See [[#IUCN Categories|IUCN Categories]].
|-
| <code>iucn_ref</code> || A reference for the iucn_category.
|-
| <code>logo</code> || The logo of the area.
|-
| <code>logo_upright</code> || The upright value of the logo.
|-
| <code>logo_alt</code> || The logo alt text. See [[WP:ALT]].
|-
| <code>logo_caption</code> || The caption that will appear below the logo.
|-
| <code>image</code> || The name of an image file to be displayed. No special formatting is needed.
|-
| <code>image_size</code> || Can be used to change the display width the image. The default and maximum value is 284px. Images with a horizontal orientation (landscape mode) will generally display well at the default setting. An image with vertical orientation (portrait mode) may need to be adjusted to 180px or 220px. For example <code>image_size=200</code> and not <code>image_size=200px</code>.
|-
| <code>image_alt</code> || Alt text for the image, for visually impaired readers. See [[WP:ALT]].
|-
| <code>image_caption</code> || The caption which will appear below the image if one is required.
|-
| <code>map</code> || The name of the [[Template:location map|location map]] to be displayed. See [[#Map display methods|Map display methods]]. To use a static image, use {{para|map_image}}
|-
| <code>map_image</code> || The file name of a static map image to be displayed. To use a [[Template:location map|location map]], use {{para|map}}.
|-
| <code>map_width</code> || Width to display the map image in pixels. The default and maximum is 284, but usually the map should be much smaller. For example: <code>map_width=200</code> (not <code>map_width=200px</code>). If a [[Template:Location map|location map]] template is used the map size might be scaled automatically if no width is specified.
|-
| <code>map_alt</code> || Alternative text for the map image, see [[WP:ALT]].
|-
| <code>map_caption</code> || Text to be displayed below the map image, if required.
|-
| <code>AlternativeMap</code> || Use an alternative map for the location map, where available. For additional information, see [[Template:Location map#AlternativeMap parameter]].
|-
| <code>relief</code> || When the geographical coordinates method is used (see [[#Map display methods|Map display methods]]), any non-blank value (<code>yes</code>, <code>1</code>, etc.) will cause the template to display a [[relief mapping (computer graphics)|relief map]] image, where available. For additional information, see [[Template:Location map#Relief parameter]].
|-
| <code>label</code> || A text message that will be displayed next to the marker. Works with <code>label_position</code> below.
|-
| <code>label_position</code> || Specifies the position of a label with respect to the marker. This is not functional when using the XY method for map display. It must be assigned a value or no label will not display. Valid values are <code>left</code>, <code>right</code>, <code>top</code> and <code>bottom</code>. See <code>label</code> above.
|-
| <code>mark</code> || The image to use for the marker. The default is [[:File:Red pog.svg|Red pog.svg]], unless <code>map=us locator blank.svg</code> in which case the default is [[:File:Green pog.svg|Green pog.svg]]. See [[Template:Location map]] for more information.
|-
| <code>marker_size</code> || The display width of the marker image in pixels. The default value is 8.
|-
| <code>mapframe</code> || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage.
|-
| <code>location</code> || The location of the protected area. Don't be too precise. County, state and country are good in the USA. If the area is within a city specify the city, state and country. If the area is in multiple counties just list the state and country. For areas in other countries adjust accordingly.
|-
| <code>nearest_city</code><br /><code>nearest_town</code> || Recommended if the area is not within a city or town. It could be a city with a major airport or a large gateway town where supplies and lodging are available. Use the most appropriate parameter.
|-
| <code>coordinates</code><br /><code>coords</code> || For the {{tl|coord}} template. The parameters {{para|format|dms}} and {{para|display|inline,title}} are recommended. Its coordinates can be used with the location map. (Unless a value for <code>type:</code> is provided, the template will automatically use <code>type:landmark</code>, or something that is set as <code>geohack-type</code>. See the {{tl|Coord}} page for more info.)
|-
| <code>coords_ref</code> || Can be used with either coordinate display method above. Strongly recommended. Specify a citation for the coordinates using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>geohack-type</code> || Set the geohack type parameter for use with coordinates and mapframes. Defaults to 'landmark'. See [[Template:Coord#type:T]] for more information.
|-
| <code>length</code> || Length of protected area, e.g., length of a trail. The {{tl|Convert}} template should be used.
|-
| <code>length_km</code><br /><code>length_mi</code> || Length of protected area, with automatic conversion to metric/imperial units.
|-
| <code>width</code> || Width of protected area. Can be used with {{para|length}} to describe rough shape. The {{tl|Convert}} template should be used.
|-
| <code>width_km</code><br /><code>width_mi</code> || Width of protected area, with automatic conversion to metric/imperial units.
|-
| <code>area</code> || Area of the protected area. Usually in acres or square miles for US locations and hectares or square kilometres elsewhere. The {{tl|Convert}} template should be used. Very small areas might be specified in square feet, square yards or square metres.
|-
| <code>area_km2</code><br /><code>area_sqmi</code><br /><code>area_acre</code><br /><code>area_ha</code> || Area of the protected area, with automatic conversion to metric/imperial units. Preferred to using bare {{para|area}}
|-
| <code>area_ref</code> || Reference to reliable source for area value.
|-
| <code>elevation</code> || Elevation of the protected area.
|-
| <code>dimensions</code> || Dimensions of the protected area.
|-
| <code>designation</code> || The legal protection offered to the park.
|-
| <code>authorized</code><br /><code>created</code><br /><code>designated</code><br /><code>established</code> || The date the protected area was created. See [[#Alternate parameters|below]]. Use {{tl|Start date}}. For example, for Yosemite National Park, use <nowiki>{{Start date|1890|10|1}}</nowiki>.
|-
| <code>disestablished</code> || The date when the area became no longer protected, if any.
|-
| <code>named_for</code> ||
|-
| <code>visitation_num</code> || The number of visitors in a recent year if known.
|-
| <code>visitation_year</code> || The year during which the number of visitors was counted.
|-
| <code>visitation_ref</code> || Used with the visitation parameters above. Highly recommended. Specify the a citation for the visitation data using {{nowrap| <code><nowiki><ref>...</ref></nowiki></code>}} tags.
|-
| <code>governing_body</code><br /><code>administrator</code><br /><code>operator</code><br /><code>owner</code> || The agency or organization which controls or owns the protected area. See [[#Alternate parameters|below]].
|-
| <code>world_heritage_site</code> || The year the protected area was designated a [[World Heritage Site]]. Few areas have this designation. If the article uses {{tl|Infobox World Heritage Site}} then this parameter should not be used.
|-
| <code>website</code><br /><code>url</code> || The full URL of the official website with no formatting. For example: {{nowrap| <code><nowiki>http://www.example.org/</nowiki></code>}}. Use {{para|website}} to display it with the label "Website" or use {{para|url}} to display it with no label.
|-
| <code>child</code> || Set to "yes" if this infobox is embedded inside another infobox.
|-
| <code>module</code> || Another infobox to place within this infobox. It will show up at the bottom. It needs to have its "embed" or "child" parameter set to 1 or yes, as appropriate.
|-
| <code>module2</code> || A second embedded infobox.
|}
=== Alternate parameters ===
A few cells allow alternate parameter names which can be used to generate an appropriate label. Editors should probably not be overly concerned with using the correct label unless using the wrong label would be a blatant error.
{{{{BASEPAGENAME}}|name=|authorized=''authorized''}}
{{{{BASEPAGENAME}}|name=|created=''created''}}
{{{{BASEPAGENAME}}|name=|designated=''designated''}}
{{{{BASEPAGENAME}}|name=|established=''established''}}
Protected areas are often created as the result of a governmental procedure. For example, in the United States, national parks are ''established'' by an act of congress, National Monuments are usually ''created'' by presidential proclamation, and wilderness areas are ''designated'' by an act of congress. National Park Service Affiliated Areas are ''authorized''.
: <code>authorized</code> → Authorized
: <code>created</code> → Created
: <code>designated</code> → Designated
: <code>established</code> → Established
{{clear}}
{{{{BASEPAGENAME}}|name=|governing_body=''governing_body''}}
{{{{BASEPAGENAME}}|name=|administrator=''administrator''}}
{{{{BASEPAGENAME}}|name=|operator=''operator''}}
{{{{BASEPAGENAME}}|name=|owner=''owner''}}
Some areas are privately owned, and it might be inappropriate to use the label ''Governing body''. For example, the [[Aleutian World War II National Historic Area]] is affiliated with the [[National Park Service]] but is ''owned'' by the [[Ounalashka Corporation]]. [[Chimney Rock National Historic Site]] is operated by the [[Nebraska State Historical Society]].
: <code>governing_body</code> → Governing body
: <code>administrator</code> → Administrator
: <code>operator</code> → Operator
: <code>owner</code> → Owner
{{clear}}
{{{{BASEPAGENAME}}|name=|website=''website''}}
{{{{BASEPAGENAME}}|name=|url=''url''}}
The website can be displayed with or without a label.
: <code>website</code> → Website
: <code>url</code> → (no label)
{{clear}}
=== IUCN Categories ===
Depending on the value of the <code>iucn_category</code> parameter, one of the following banners will be displayed below the name. Valid values are Ia, Ib, II, III, IV, V and VI. For more information read the [[IUCN protected area categories]] article. If you cannot find the correct code in a [[WP:SOURCE|reliable source]], leave blank.
{| style="border:1px solid gray; width:300px; font-size: 90%; text-align: center; line-height: 1.5;"
|-
| {{IUCN banner|Ia}}
|-
| {{IUCN banner|Ib}}
|-
| {{IUCN banner|II}}
|-
| {{IUCN banner|III}}
|-
| {{IUCN banner|IV}}
|-
| {{IUCN banner|V}}
|-
| {{IUCN banner|VI}}
|}
===Mapframe maps===
{{Infobox mapframe/doc/parameters
| onByDefault = yes, unless any of these parameters are present: {{para|map}}, {{para|image_map}}, {{para|map_image}}, {{para|child}}
| mapframe-marker = natural
| mapframe-zoom = Determined based on any of the parameters: {{para|geohack-type}}, {{para|area_sqmi}}, {{para|area_km2}}, {{para|area_ha}}, {{para|area_acre}}, {{para|length_km}}, {{para|length_mi}}, {{para|width_km}}, {{para|width_mi}}. Can be manually set by {{para|mapframe-zoom}}.
| mapframe-type = {{para|geohack-type}} or landmark
| mapframe-area_mi2 = {{para|area_sqmi}}
| mapframe-area_km2 = {{para|area_km2}}
| mapframe-area_ha = {{para|area_ha}}
| mapframe-area_acre = {{para|area_acre}}
| mapframe-length_km = {{para|length_km}}
| mapframe-length_mi = {{para|length_mi}}
| mapframe-width_km = {{para|width_km}}
| mapframe-width_mi = {{para|width_mi}}
| mapframe-stroke-color = #008000
| mapframe-shape-fill = #5CE65C
| mapframe-marker-color = #62AB22
| mapframe-frame-width = 284
| mapframe-frame-height = 208
}}
== Examples ==
=== With map only ===
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU| display = inline <!-- for documentation page only - not general practice -->}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Ku-ring-gai Chase National Park
| iucn_category = II
| map = Australia
| relief = yes
| map_width = 200
| map_alt = A map showing the location of the park on the east coast of Australia
| location = [[New South Wales]], Australia
| nearest_city = [[Sydney]]
| coordinates = {{coord|33|39|3.6|S|151|12|3.6|E|region:AU|display=inline}}
| area_km2 = 154
| established = {{start date|1967|10|1}}
| visitation_num = 2 million
| visitation_year = 2001
| governing_body = [[NSW National Parks & Wildlife Service]]
}}
</syntaxhighlight>
{{clear}}
=== With imagegraph + default mapframe ===
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| image = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| image_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| image_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
| qid = Q180402<!-- only explicitly listed in this code example, in the article it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Yosemite National Park
| iucn_category = II
| image = Tunnel View, Yosemite Valley, Yosemite NP - Diliff.jpg
| image_alt = Mountain valley with sheer cliff on its left side, and a waterfall cascading into its right, with a clear blue sky above and many green trees below
| image_caption = Yosemite Valley from Tunnel View
| location = [[California]], United States
| nearest_city = [[Mariposa, California|Mariposa]]
| mapframe-zoom = 6
| coordinates={{coord|37|43|44|N|119|35|54|W|display = inline <!-- for documentation page only - not general practice -->}}
| area_acre = 761266
| established = {{start date|1890|10|1}}
| visitation_num = 3,280,911
| visitation_year = 2004
| governing_body = [[National Park Service]]
| world_heritage_site = 1984
| url = http://www.nps.gov/yose/
}}
</syntaxhighlight>
{{clear}}
=== With default mapframe only ===
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
| qid = Q702540<!-- only explicitly listed in the code here, at the [[Harz National Park]] it's implicit -->
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Harz National Park
| alt_name = ''Nationalparkverwaltung Harz''
| iucn_category = II
| location = [[Lower Saxony]] and [[Saxony-Anhalt]], Germany
| nearest_city =
| coordinates = {{coord|51|47|00|N|10|34|00|E|region:DE_type:landmark|display=inline}}
| area_ha = 8900
| established = 1990, 1994, 2006
| visitation_num =
| visitation_year =
| governing_body = Nationalparkverwaltung Harz
}}
</syntaxhighlight>
{{clear}}
=== With imagegraph and map ===
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| image = Dry Island Provincial Park2.jpg
| image_alt = A green valley with a river and a road running somewhat parallel to the river
| image_caption = Panoramic view
| image_size = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Dry Island Buffalo Jump Provincial Park
| image = Dry Island Provincial Park2.jpg
| image_alt = A green valley with a river and a road running somewhat parallel to the river
| image_caption = Panoramic view
| image_size = 260
| iucn_category = III
| map = Canada Alberta
| map_alt = Location the park in south central Alberta, Canada
| map_caption = Map of Alberta, Canada
| relief = yes
| map_width = 200
| location = [[Alberta]], Canada
| nearest_city = [[Three Hills, Alberta|Three Hills]]
| coordinates = {{coord|51|56|10|N|112|57|41|W| display = inline <!-- for documentation page only - not general practice -->}}
| coords_ref =
| area_km2 = 34.5
| established = {{start date|1970|12|15}}
| governing_body = [[Alberta Tourism, Parks and Recreation]]
}}
</syntaxhighlight>
{{clear}}
=== With embedded alternate map ===
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| module = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
<syntaxhighlight lang="wikitext" style="overflow:auto;">
{{Infobox protected area
| name = Black Forest National Park
| iucn_category = II
| image_map = Nationalpark-Schwarzwald-Lageplan.png
| map_alt =
| map_caption = Location of the Black Forest National Park in the northwestern Black Forest
| relief =
| location = [[Baden-Württemberg]], Germany
| coordinates = {{coord|48|33|40|N|8|13|17|E| display = inline <!-- for documentation page only - not general practice -->}}
| module = {{Location map | Germany
| AlternativeMap = Karte Nationalparks Deutschland high.png
| caption = Black Forest National Park in the southwest of the map
| coordinates = {{coord|48|33|40|N|8|13|17|E}}
| border = none
| width = 300
}}
}}
</syntaxhighlight>
{{clear}}
== Map display methods ==
Any image of a map showing the location of the protected area can be used.
=== Display a marker on a map using a template and geographic coordinates ===
A marker can be superimposed on a map using one of a set of special map templates. To display a marker, the geographic coordinates must be specified using the {{tl|Coord}} template inside the {{para|coordinates}} parameter. See the documentation for {{tl|Location map}}. The parameters for this template map to a subset of the parameters used by {{tlf|Location map}}. A map template can be found using these sources:
:[[Template:Location map/List|List of templates]] – Many of the listed items are redirects and a few templates may not function as expected.
:[[:Category:Location map templates]] - templates sorted by category.
:[[Special:WhatLinksHere/Template:Location map/Info]] – a search that might help.
:[[Special:PrefixIndex/Module:Location map/data/]] – another search that might help.
:[[Special:Prefixindex/Template:Location map]] – another search that might help.
All of the names begin with the words "Location map" followed by the area covered. The value you need to specify is the area name. The map template for Canada is [[Module:Location map/data/Canada|Location map/data/Canada]]. In this case specify {{para|map|Canada}}.
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}
<syntaxhighlight lang="wikitext">
{{Infobox protected area
| name = Four Corners, Canada
| map = Canada
| map_caption = Example using geographic coordinates
| coordinates = {{coord|60|N|102|W|}}
}}</syntaxhighlight>
The {{tl|Coord}} template has a parameter {{para|display|inline,title}} which can be added to make the coordinates display at the top of the page as well.
==TemplateData==
{{collapse top|[[Wikipedia:TemplateData|TemplateData]] documentation used by [[Wikipedia:VisualEditor|VisualEditor]] and other tools}}
{{TemplateData header|noheader=1}}
<templatedata>
{
"params": {
"name": {
"label": "Name",
"type": "string",
"required": true,
"description": "Name of protected area"
},
"alt_name": {
"label": "Alternative Name",
"type": "string",
"required": false,
"description": "Common name for the protected area"
},
"iucn_category": {
"label": "IUCN Category",
"type": "string",
"required": false,
"description": "IUCN Category associated with the protected area "
},
"image": {
"label": "image",
"type": "wiki-page-name",
"required": false,
"description": "Image for the protected area"
},
"image_size": {
"label": "image Width",
"type": "number",
"required": false,
"description": "Width of the image given by image"
},
"image_alt": {
"label": "image Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to be displayed if image doesn't appear for any reason"
},
"image_caption": {
"label": "image Caption",
"type": "string",
"required": false,
"description": "Caption for the image"
},
"map": {
"label": "Map",
"type": "wiki-page-name",
"required": false,
"description": "Location map for the protected area"
},
"map_image": {
"label": "Map image",
"type": "wiki-page-name",
"required": false,
"description": "Map image for the protected area"
},
"map_alt": {
"label": "Map Alternative Text",
"type": "string",
"required": false,
"description": "Alternative text to display if the map doesn't display for whatever reasons"
},
"map_caption": {
"label": "Map Caption",
"type": "string",
"required": false,
"description": "Caption for the map"
},
"map_width": {
"label": "Map Width",
"type": "number",
"required": false,
"description": "Width of the map"
},
"relief": {
"label": "Relief",
"type": "string",
"required": false,
"description": "When the geographical coordinates method is used, any non-blank value will cause the template to display a relief map image"
},
"location": {
"label": "Location",
"type": "string",
"required": false,
"description": "Location of the protected area"
},
"nearest_city": {
"label": "Nearest city or town",
"aliases": [
"nearest_town"
],
"type": "string",
"required": false,
"description": "Nearest city from the protected area"
},
"coordinates": {
"label": "Coordinates",
"type": "string",
"required": false,
"description": "When this option is used the type, region, scale, source, format and display parameters are not functional but this data can be entered in the {{Coord}} template."
},
"coords_ref": {
"label": "Coordinates Reference",
"type": "string",
"required": false,
"description": "Can be used with either coordinate display method above"
},
"length": {
"label": "Length",
"type": "number",
"required": false,
"description": "Length of protected area"
},
"width": {
"label": "Width",
"type": "number",
"required": false,
"description": "Width of protected area"
},
"area": {
"label": "Area",
"type": "number",
"required": false,
"description": "Area covered by protected area"
},
"established": {
"label": "Established",
"aliases": [
"authorized",
"created",
"designated"
],
"type": "line",
"required": false,
"description": "The date on which the protected area was established, authorized, created, or designated"
},
"disestablished": {
"label": "Disestablished",
"type": "line",
"required": false,
"description": "The date on which the protected area became no longer protected"
},
"visitation_num": {
"label": "Visitation Number",
"type": "line",
"required": false,
"description": "Number of visitors in a recent year"
},
"visitation_year": {
"label": "Visitation Year",
"type": "line",
"required": false,
"description": "The year in which visitors were counted"
},
"visitation_ref": {
"label": "Visitation Reference",
"type": "string",
"required": false,
"description": "Reference of visitation data in <ref > </ref>"
},
"governing_body": {
"label": "Governing Body",
"aliases": [
"administrator",
"operator",
"owner"
],
"type": "string",
"required": false,
"description": "The agency or organization which controls or owns the protected area"
},
"world_heritage_site": {
"label": "World Heritage Site",
"type": "line",
"required": false,
"description": "The year the protected area was designated a World Heritage Site"
},
"website": {
"label": "Website",
"aliases": [
"url"
],
"type": "string",
"required": false,
"description": "The full URL of the official website with no formatting"
},
"child": {
"label": "Child",
"type": "string",
"required": false,
"description": "Yes if infobox is embedded inside another infobox"
},
"module": {
"label": "Module",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"module2": {
"label": "Module 2",
"type": "string",
"required": false,
"description": "Another infobox to place within this infobox"
},
"elevation": {},
"elevation_avg": {},
"elevation_min": {},
"elevation_max": {},
"logo": {
"label": "Logo",
"description": "The logo of the protected area",
"type": "wiki-file-name"
},
"logo_alt": {
"label": "Logo alt",
"description": "The alt text for the logo",
"type": "string"
},
"logo_upright": {
"label": "Logo upright",
"description": "The upright value for the logo",
"example": "1.2",
"type": "number"
},
"logo_caption": {
"label": "Logo caption",
"description": "The caption that goes beneath the logo",
"type": "string"
},
"mapframe": {
"label": "Show mapframe map",
"description": "Specify yes or no to show or hide the map, overriding the default",
"example": "yes",
"type": "string",
"default": "no",
"suggested": true
},
"mapframe-caption": {
"label": "Mapframe caption",
"description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"",
"type": "string"
},
"mapframe-custom": {
"label": "Custom mapframe",
"description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.",
"type": "wiki-template-name"
},
"mapframe-id": {
"aliases": [
"id",
"qid"
],
"label": "Mapframe Wikidata item",
"description": "Id (Q-number) of Wikidata item to use.",
"type": "string",
"default": "(item for current page)"
},
"mapframe-coordinates": {
"aliases": [
"mapframe-coord",
"coordinates",
"coord"
],
"label": "Mapframe coordinates ",
"description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.",
"example": "{{Coord|12.34|N|56.78|E}}",
"type": "wiki-template-name",
"default": "(coordinates from Wikidata)"
},
"mapframe-wikidata": {
"label": "Mapframe shapes from Wikidata",
"description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter",
"example": "yes",
"type": "string"
},
"mapframe-shape": {
"label": "Mapframe shape feature",
"description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"",
"type": "string"
},
"mapframe-point": {
"label": "Mapframe point feature",
"description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"",
"type": "string"
},
"mapframe-geomask": {
"label": "Mapframe geomask",
"description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)",
"example": "Q100",
"type": "wiki-page-name"
},
"mapframe-switcher": {
"label": "Mapframe switcher",
"description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.",
"type": "string"
},
"mapframe-frame-width": {
"aliases": [
"mapframe-width"
],
"label": "Mapframe width",
"description": "Frame width in pixels",
"type": "number",
"default": "270"
},
"mapframe-frame-height": {
"aliases": [
"mapframe-height"
],
"label": "Mapframe height",
"description": "Frame height in pixels",
"type": "number",
"default": "200"
},
"mapframe-shape-fill": {
"label": "Mapframe shape fill",
"description": "Color used to fill shape features",
"type": "string",
"default": "#606060"
},
"mapframe-shape-fill-opacity": {
"label": "Mapframe shape fill opacity",
"description": "Opacity level of shape fill, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-stroke-color": {
"aliases": [
"mapframe-stroke-colour"
],
"label": "Mapframe stroke color",
"description": "Color of line features, and outlines of shape features",
"type": "string",
"default": "#ff0000"
},
"mapframe-stroke-width": {
"label": "Mapframe stroke width",
"description": "Width of line features, and outlines of shape features",
"type": "number",
"default": "5"
},
"mapframe-marker": {
"label": "Mapframe marker",
"description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options",
"example": "museum",
"type": "string"
},
"mapframe-marker-color": {
"aliases": [
"mapframe-marker-colour"
],
"label": "Mapframe marker color",
"description": "Background color for the marker",
"type": "string",
"default": "#5E74F3"
},
"mapframe-geomask-stroke-color": {
"aliases": [
"mapframe-geomask-stroke-colour"
],
"label": "Mapframe geomask stroke color",
"description": "Color of outline of geomask shape",
"type": "string",
"default": "#555555"
},
"mapframe-geomask-stroke-width": {
"label": "Mapframe geomask stroke width",
"description": "Width of outline of geomask shape",
"type": "number",
"default": "2"
},
"mapframe-geomask-fill": {
"label": "Mapframe geomask fill",
"description": "Color used to fill outside geomask features",
"type": "string",
"default": "#606060"
},
"mapframe-geomask-fill-opacity": {
"label": "Mapframe geomask fill opacity",
"description": "Opacity level of fill outside geomask features, a number between 0 and 1",
"type": "number",
"default": "0.5"
},
"mapframe-zoom": {
"label": "Mapframe zoom",
"description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area",
"example": "12",
"type": "number",
"default": "10"
},
"mapframe-length_km": {
"label": "Mapframe length (km)",
"description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-length_mi": {
"label": "Mapframe length (mi)",
"description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_km2": {
"label": "Mapframe area (km^2)",
"description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-area_mi2": {
"label": "Mapframe area (mi^2)",
"description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area",
"type": "number"
},
"mapframe-frame-coordinates": {
"aliases": [
"mapframe-frame-coord"
],
"label": "Mapframe frame coordinates",
"description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}",
"example": "{{Coord|12.35|N|56.71|E}}",
"type": "wiki-template-name"
},
"mapframe-line": {},
"iucn_ref": {},
"map_size": {},
"mapsize": {},
"AlternativeMap": {},
"label": {},
"label_position": {},
"mark": {},
"marker_size": {},
"image_map": {},
"geohack-type": {},
"area_sqmi": {},
"area_km2": {},
"area_ha": {},
"area_acre": {},
"length_km": {},
"length_mi": {},
"width_km": {},
"width_mi": {},
"area_ref": {},
"dimensions": {},
"designation": {},
"named_for": {},
"module": {}
},
"format": "block",
"paramOrder": [
"name",
"alt_name",
"iucn_category",
"logo",
"logo_alt",
"logo_upright",
"logo_caption",
"image",
"image_size",
"image_alt",
"image_caption",
"map",
"map_image",
"map_alt",
"map_caption",
"map_width",
"relief",
"mapframe",
"mapframe-caption",
"mapframe-custom",
"mapframe-id",
"mapframe-coordinates",
"mapframe-wikidata",
"mapframe-point",
"mapframe-shape",
"mapframe-frame-width",
"mapframe-frame-height",
"mapframe-shape-fill",
"mapframe-shape-fill-opacity",
"mapframe-stroke-color",
"mapframe-stroke-width",
"mapframe-marker",
"mapframe-marker-color",
"mapframe-geomask",
"mapframe-geomask-stroke-color",
"mapframe-geomask-stroke-width",
"mapframe-geomask-fill",
"mapframe-geomask-fill-opacity",
"mapframe-zoom",
"mapframe-length_km",
"mapframe-length_mi",
"mapframe-area_km2",
"mapframe-area_mi2",
"mapframe-frame-coordinates",
"mapframe-switcher",
"mapframe-line",
"location",
"nearest_city",
"coordinates",
"coords_ref",
"length",
"width",
"area",
"established",
"disestablished",
"visitation_num",
"visitation_year",
"visitation_ref",
"governing_body",
"world_heritage_site",
"website",
"child",
"module",
"module2",
"elevation",
"elevation_avg",
"elevation_min",
"elevation_max",
"iucn_ref",
"map_size",
"mapsize",
"AlternativeMap",
"label",
"label_position",
"mark",
"marker_size",
"image_map",
"geohack-type",
"area_sqmi",
"area_km2",
"area_ha",
"area_acre",
"length_km",
"length_mi",
"width_km",
"width_mi",
"area_ref",
"dimensions",
"designation",
"named_for"
]
}
</templatedata>
{{collapse bottom}}
== Microformat ==
The articles created using this template include an hCard microformat. For more information read [[:Template:UF-hcard-place|this]].
== Tracking categories ==
{{Infobox tracking cats}}
== See also ==
* {{tl|Infobox park}}
<includeonly>{{Sandbox other||
<!--Categories below this line, please; interwikis at Wikidata-->
[[Category:IUCN Protected Area infobox templates|Protected Area]]
[[Category:Place infobox templates|Protected Area]]
[[Category:Protected areas templates]]
[[Category:Embeddable templates]]
[[Category:Templates that add a tracking category]]
}}</includeonly>
2jq2gyivsv26x6svgdoil2wyi1j3f6s
Module:Find sources/templates/Find sources mainspace
828
77125
670302
2014-09-30T00:54:50Z
Mr. Stradivarius
14479
create config for [[Template:Find sources mainspace]]
670302
Scribunto
text/plain
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'jstor',
display = 'JSTOR'
},
{
code = 'google free images',
display = 'free images'
}
},
isUsedInMainspace = true
}
d948km8d4sp1zswv15644jfsz44b6cx
670303
670302
2014-09-30T01:07:12Z
Mr. Stradivarius
14479
Protected Module:Find sources/templates/Find sources mainspace: [[WP:High-risk templates|High-risk Lua module]] ([Edit=Allow only template editors and admins] (indefinite) [Move=Allow only template editors and admins] (indefinite))
670302
Scribunto
text/plain
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'jstor',
display = 'JSTOR'
},
{
code = 'google free images',
display = 'free images'
}
},
isUsedInMainspace = true
}
d948km8d4sp1zswv15644jfsz44b6cx
670304
670303
2017-04-24T23:44:15Z
Train2104
27007
removing google images, primary use is notability template.
670304
Scribunto
text/plain
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'jstor',
display = 'JSTOR'
}
},
isUsedInMainspace = true
}
k39u38p2vc24ts3y9zywym3jkiq7787
670305
670304
2021-11-18T08:35:23Z
Primefac
14502
Changed protection settings for "[[Module:Find sources/templates/Find sources mainspace]]": dropping per request of EXCON editor ([Edit=Require extended confirmed access] (indefinite) [Move=Require template editor access] (indefinite))
670304
Scribunto
text/plain
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'jstor',
display = 'JSTOR'
}
},
isUsedInMainspace = true
}
k39u38p2vc24ts3y9zywym3jkiq7787
670306
670305
2022-03-01T07:33:51Z
Primefac
14502
Changed protection settings for "[[Module:Find sources/templates/Find sources mainspace]]": match main module ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite))
670304
Scribunto
text/plain
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'jstor',
display = 'JSTOR'
}
},
isUsedInMainspace = true
}
k39u38p2vc24ts3y9zywym3jkiq7787
670307
670306
2026-06-29T12:44:05Z
King ChristLike
13051
5 revisions imported from [[:en:Module:Find_sources/templates/Find_sources_mainspace]]
670304
Scribunto
text/plain
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'jstor',
display = 'JSTOR'
}
},
isUsedInMainspace = true
}
k39u38p2vc24ts3y9zywym3jkiq7787
670330
670304
2019-04-28T14:29:52Z
Primefac
14502
Old TFD – 2019 March 7: no consensus ([[WP:XFDC|XFDcloser]])
670330
wikitext
text/x-wiki
{{oldtfdfull|date= 2019 March 7 |result=no consensus |disc=Module:Find sources template pages}}
04ywvckhnetuo863n8fslmvc8kp1744
670331
670306
2024-06-21T02:01:17Z
Tffhthewriter
63979
/* Template-protected edit request on 21 June 2024 */ new section
670331
wikitext
text/x-wiki
{{oldtfdfull|date= 2019 March 7 |result=no consensus |disc=Module:Find sources template pages}}
== Template-protected edit request on 21 June 2024 ==
{{edit template-protected|Module:Find sources/templates/Find sources mainspace|answered=no}}
Hello! I am Kenny Burns EA and I am requesting full access to edit this because there have been many new additions including article references, shows, music, TV and films. [[User:Tffhthewriter|Tffhthewriter]] ([[User talk:Tffhthewriter|talk]]) 02:01, 21 June 2024 (UTC)
l9hx8oxqz5ixgtp241lx3d2e6ooo3z4
670332
670331
2024-06-21T16:39:01Z
Paine Ellsworth
4319
/* Template-protected edit request on 21 June 2024 */ not done
670332
wikitext
text/x-wiki
{{oldtfdfull|date= 2019 March 7 |result=no consensus |disc=Module:Find sources template pages}}
== Template-protected edit request on 21 June 2024 ==
{{edit template-protected|Module:Find sources/templates/Find sources mainspace|answered=yes}}
Hello! I am Kenny Burns EA and I am requesting full access to edit this because there have been many new additions including article references, shows, music, TV and films. [[User:Tffhthewriter|Tffhthewriter]] ([[User talk:Tffhthewriter|talk]]) 02:01, 21 June 2024 (UTC)
:[[File:Red information icon with gradient background.svg|20px|link=|alt=]] '''Not done:''' thank you very much, editor {{u|Tffhthewriter}}, for your raising the need for improvement here; however, this is not the right page to [[Wikipedia:Requests for permissions|request]] additional [[Wikipedia:User access levels|user rights]]. You may reopen this request with the specific changes to be made and someone may add them for you. '''''[[User:Paine Ellsworth|<span style="font-size:92%;color:darkblue;font-family:Segoe Script">P.I. Ellsworth</span>]]''''' , [[Editor|<span style="color:black">ed.</span>]] [[User talk:Paine Ellsworth|<sup>put'er there</sup>]] <small>16:38, 21 June 2024 (UTC)</small>
jtkxhbhrum90qzxp2nao9gjq3ekh9bi
670333
670332
2024-06-21T16:40:57Z
Paine Ellsworth
4319
/* Template-protected edit request on 21 June 2024 */ m
670333
wikitext
text/x-wiki
{{oldtfdfull|date= 2019 March 7 |result=no consensus |disc=Module:Find sources template pages}}
== Template-protected edit request on 21 June 2024 ==
{{edit template-protected|Module:Find sources/templates/Find sources mainspace|answered=yes}}
Hello! I am Kenny Burns EA and I am requesting full access to edit this because there have been many new additions including article references, shows, music, TV and films. [[User:Tffhthewriter|Tffhthewriter]] ([[User talk:Tffhthewriter|talk]]) 02:01, 21 June 2024 (UTC)
:[[File:Red information icon with gradient background.svg|20px|link=|alt=]] '''Not done:''' thank you very much, editor {{u|Tffhthewriter|Kenny Burns EA}}, for your raising the need for improvement here; however, this is not the right page to [[Wikipedia:Requests for permissions|request]] additional [[Wikipedia:User access levels|user rights]]. If you like, you can reopen this request with the specific changes to be made and someone may add them for you. '''''[[User:Paine Ellsworth|<span style="font-size:92%;color:darkblue;font-family:Segoe Script">P.I. Ellsworth</span>]]''''' , [[Editor|<span style="color:black">ed.</span>]] [[User talk:Paine Ellsworth|<sup>put'er there</sup>]] <small>16:38, 21 June 2024 (UTC)</small>
nnd19ty31fsins23q9cl4ntddofm17q
670334
670333
2024-06-21T16:42:34Z
Paine Ellsworth
4319
include Permanently protected notifier
670334
wikitext
text/x-wiki
{{Permanently protected}}
{{oldtfdfull|date= 2019 March 7 |result=no consensus |disc=Module:Find sources template pages}}
== Template-protected edit request on 21 June 2024 ==
{{edit template-protected|Module:Find sources/templates/Find sources mainspace|answered=yes}}
Hello! I am Kenny Burns EA and I am requesting full access to edit this because there have been many new additions including article references, shows, music, TV and films. [[User:Tffhthewriter|Tffhthewriter]] ([[User talk:Tffhthewriter|talk]]) 02:01, 21 June 2024 (UTC)
:[[File:Red information icon with gradient background.svg|20px|link=|alt=]] '''Not done:''' thank you very much, editor {{u|Tffhthewriter|Kenny Burns EA}}, for your raising the need for improvement here; however, this is not the right page to [[Wikipedia:Requests for permissions|request]] additional [[Wikipedia:User access levels|user rights]]. If you like, you can reopen this request with the specific changes to be made and someone may add them for you. '''''[[User:Paine Ellsworth|<span style="font-size:92%;color:darkblue;font-family:Segoe Script">P.I. Ellsworth</span>]]''''' , [[Editor|<span style="color:black">ed.</span>]] [[User talk:Paine Ellsworth|<sup>put'er there</sup>]] <small>16:38, 21 June 2024 (UTC)</small>
4agko5rggb1juazudxt2imh2e5yph8b
670335
670334
2026-06-29T09:53:48Z
Krauss
63980
/* Please change JSTOR to PMC */ new section
670335
wikitext
text/x-wiki
{{Permanently protected}}
{{oldtfdfull|date= 2019 March 7 |result=no consensus |disc=Module:Find sources template pages}}
== Template-protected edit request on 21 June 2024 ==
{{edit template-protected|Module:Find sources/templates/Find sources mainspace|answered=yes}}
Hello! I am Kenny Burns EA and I am requesting full access to edit this because there have been many new additions including article references, shows, music, TV and films. [[User:Tffhthewriter|Tffhthewriter]] ([[User talk:Tffhthewriter|talk]]) 02:01, 21 June 2024 (UTC)
:[[File:Red information icon with gradient background.svg|20px|link=|alt=]] '''Not done:''' thank you very much, editor {{u|Tffhthewriter|Kenny Burns EA}}, for your raising the need for improvement here; however, this is not the right page to [[Wikipedia:Requests for permissions|request]] additional [[Wikipedia:User access levels|user rights]]. If you like, you can reopen this request with the specific changes to be made and someone may add them for you. '''''[[User:Paine Ellsworth|<span style="font-size:92%;color:darkblue;font-family:Segoe Script">P.I. Ellsworth</span>]]''''' , [[Editor|<span style="color:black">ed.</span>]] [[User talk:Paine Ellsworth|<sup>put'er there</sup>]] <small>16:38, 21 June 2024 (UTC)</small>
== Please change JSTOR to PMC ==
Wikipedia follows [[Wikipedia:Five pillars|free content principles]] and supports the [[Open Access]] initiative. [[PubMed Central]] has more than 11.3 million (11,327,616) of full-text open access articles (see [https://pmc.ncbi.nlm.nih.gov/about/intro/ PMC's Archive Use Anual Report]). JSTOR, by other hand, has only 6% of its records open, in the order of 500 to 700 thousand open access articles. [[User:Krauss|Krauss]] ([[User talk:Krauss|talk]]) 09:53, 29 June 2026 (UTC)
6uezucnr1qeoxvw752oj0z9oyjcbeim
670336
670335
2026-06-29T10:00:04Z
Krauss
63980
/* Edit request {{subst:#time:j F Y}} */ new section
670336
wikitext
text/x-wiki
{{Permanently protected}}
{{oldtfdfull|date= 2019 March 7 |result=no consensus |disc=Module:Find sources template pages}}
== Template-protected edit request on 21 June 2024 ==
{{edit template-protected|Module:Find sources/templates/Find sources mainspace|answered=yes}}
Hello! I am Kenny Burns EA and I am requesting full access to edit this because there have been many new additions including article references, shows, music, TV and films. [[User:Tffhthewriter|Tffhthewriter]] ([[User talk:Tffhthewriter|talk]]) 02:01, 21 June 2024 (UTC)
:[[File:Red information icon with gradient background.svg|20px|link=|alt=]] '''Not done:''' thank you very much, editor {{u|Tffhthewriter|Kenny Burns EA}}, for your raising the need for improvement here; however, this is not the right page to [[Wikipedia:Requests for permissions|request]] additional [[Wikipedia:User access levels|user rights]]. If you like, you can reopen this request with the specific changes to be made and someone may add them for you. '''''[[User:Paine Ellsworth|<span style="font-size:92%;color:darkblue;font-family:Segoe Script">P.I. Ellsworth</span>]]''''' , [[Editor|<span style="color:black">ed.</span>]] [[User talk:Paine Ellsworth|<sup>put'er there</sup>]] <small>16:38, 21 June 2024 (UTC)</small>
== Please change JSTOR to PMC ==
Wikipedia follows [[Wikipedia:Five pillars|free content principles]] and supports the [[Open Access]] initiative. [[PubMed Central]] has more than 11.3 million (11,327,616) of full-text open access articles (see [https://pmc.ncbi.nlm.nih.gov/about/intro/ PMC's Archive Use Anual Report]). JSTOR, by other hand, has only 6% of its records open, in the order of 500 to 700 thousand open access articles. [[User:Krauss|Krauss]] ([[User talk:Krauss|talk]]) 09:53, 29 June 2026 (UTC)
== Edit request 29 June 2026 ==
{{Edit template-protected|answered=}}
'''Description of suggested change:''' replace '''JSTOR''' by '''PMC'''.
Wikipedia follows [[Wikipedia:Five pillars|free content principles]] and supports the [[Open Access]] initiative. '''[[PubMed Central]]''' (PMC) has more than 11.3 million (11,327,616) of full-text open access articles (see [https://pmc.ncbi.nlm.nih.gov/about/intro/ PMC's Archive Use Anual Report]). JSTOR, by other hand, has only 6% of its records open, in the order of 500 to 700 thousand open access articles
'''Diff:'''
{{Text diff
|1=<!-- Replace "ORIGINAL_WIKITEXT" (below this line) with the wikitext (source code) that you want to be changed. -->
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'jstor',
display = 'JSTOR'
}
},
isUsedInMainspace = true
}
|2=<!-- Replace "CHANGED_WIKITEXT" (below this line) with your requested new wikitext. -->
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'pmc',
display = 'PMC'
}
},
isUsedInMainspace = true
}
}}
[[User:Krauss|Krauss]] ([[User talk:Krauss|talk]]) 10:00, 29 June 2026 (UTC)
69tjwuw1a74kcvy4cpc5yennwsy5bdz
670337
670336
2026-06-29T10:14:59Z
Primefac
14502
/* Edit request 29 June 2026 */ query
670337
wikitext
text/x-wiki
{{Permanently protected}}
{{oldtfdfull|date= 2019 March 7 |result=no consensus |disc=Module:Find sources template pages}}
== Template-protected edit request on 21 June 2024 ==
{{edit template-protected|Module:Find sources/templates/Find sources mainspace|answered=yes}}
Hello! I am Kenny Burns EA and I am requesting full access to edit this because there have been many new additions including article references, shows, music, TV and films. [[User:Tffhthewriter|Tffhthewriter]] ([[User talk:Tffhthewriter|talk]]) 02:01, 21 June 2024 (UTC)
:[[File:Red information icon with gradient background.svg|20px|link=|alt=]] '''Not done:''' thank you very much, editor {{u|Tffhthewriter|Kenny Burns EA}}, for your raising the need for improvement here; however, this is not the right page to [[Wikipedia:Requests for permissions|request]] additional [[Wikipedia:User access levels|user rights]]. If you like, you can reopen this request with the specific changes to be made and someone may add them for you. '''''[[User:Paine Ellsworth|<span style="font-size:92%;color:darkblue;font-family:Segoe Script">P.I. Ellsworth</span>]]''''' , [[Editor|<span style="color:black">ed.</span>]] [[User talk:Paine Ellsworth|<sup>put'er there</sup>]] <small>16:38, 21 June 2024 (UTC)</small>
== Please change JSTOR to PMC ==
Wikipedia follows [[Wikipedia:Five pillars|free content principles]] and supports the [[Open Access]] initiative. [[PubMed Central]] has more than 11.3 million (11,327,616) of full-text open access articles (see [https://pmc.ncbi.nlm.nih.gov/about/intro/ PMC's Archive Use Anual Report]). JSTOR, by other hand, has only 6% of its records open, in the order of 500 to 700 thousand open access articles. [[User:Krauss|Krauss]] ([[User talk:Krauss|talk]]) 09:53, 29 June 2026 (UTC)
== Edit request 29 June 2026 ==
{{Edit template-protected|answered=}}
'''Description of suggested change:''' replace '''JSTOR''' by '''PMC'''.
Wikipedia follows [[Wikipedia:Five pillars|free content principles]] and supports the [[Open Access]] initiative. '''[[PubMed Central]]''' (PMC) has more than 11.3 million (11,327,616) of full-text open access articles (see [https://pmc.ncbi.nlm.nih.gov/about/intro/ PMC's Archive Use Anual Report]). JSTOR, by other hand, has only 6% of its records open, in the order of 500 to 700 thousand open access articles
'''Diff:'''
{{Text diff
|1=<!-- Replace "ORIGINAL_WIKITEXT" (below this line) with the wikitext (source code) that you want to be changed. -->
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'jstor',
display = 'JSTOR'
}
},
isUsedInMainspace = true
}
|2=<!-- Replace "CHANGED_WIKITEXT" (below this line) with your requested new wikitext. -->
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'pmc',
display = 'PMC'
}
},
isUsedInMainspace = true
}
}}
[[User:Krauss|Krauss]] ([[User talk:Krauss|talk]]) 10:00, 29 June 2026 (UTC)
:Is there a reason we have to replace JSTOR instead of just adding PMC as an additional option? [[User:Primefac|Primefac]] ([[User talk:Primefac|talk]]) 10:14, 29 June 2026 (UTC)
e6szgow3qzrrkvajoq9ig7hn9nhsfia
670338
670337
2026-06-29T10:15:17Z
Primefac
14502
/* Edit request 29 June 2026 */ related to prev.
670338
wikitext
text/x-wiki
{{Permanently protected}}
{{oldtfdfull|date= 2019 March 7 |result=no consensus |disc=Module:Find sources template pages}}
== Template-protected edit request on 21 June 2024 ==
{{edit template-protected|Module:Find sources/templates/Find sources mainspace|answered=yes}}
Hello! I am Kenny Burns EA and I am requesting full access to edit this because there have been many new additions including article references, shows, music, TV and films. [[User:Tffhthewriter|Tffhthewriter]] ([[User talk:Tffhthewriter|talk]]) 02:01, 21 June 2024 (UTC)
:[[File:Red information icon with gradient background.svg|20px|link=|alt=]] '''Not done:''' thank you very much, editor {{u|Tffhthewriter|Kenny Burns EA}}, for your raising the need for improvement here; however, this is not the right page to [[Wikipedia:Requests for permissions|request]] additional [[Wikipedia:User access levels|user rights]]. If you like, you can reopen this request with the specific changes to be made and someone may add them for you. '''''[[User:Paine Ellsworth|<span style="font-size:92%;color:darkblue;font-family:Segoe Script">P.I. Ellsworth</span>]]''''' , [[Editor|<span style="color:black">ed.</span>]] [[User talk:Paine Ellsworth|<sup>put'er there</sup>]] <small>16:38, 21 June 2024 (UTC)</small>
== Please change JSTOR to PMC ==
Wikipedia follows [[Wikipedia:Five pillars|free content principles]] and supports the [[Open Access]] initiative. [[PubMed Central]] has more than 11.3 million (11,327,616) of full-text open access articles (see [https://pmc.ncbi.nlm.nih.gov/about/intro/ PMC's Archive Use Anual Report]). JSTOR, by other hand, has only 6% of its records open, in the order of 500 to 700 thousand open access articles. [[User:Krauss|Krauss]] ([[User talk:Krauss|talk]]) 09:53, 29 June 2026 (UTC)
=== Edit request 29 June 2026 ===
{{Edit template-protected|answered=}}
'''Description of suggested change:''' replace '''JSTOR''' by '''PMC'''.
Wikipedia follows [[Wikipedia:Five pillars|free content principles]] and supports the [[Open Access]] initiative. '''[[PubMed Central]]''' (PMC) has more than 11.3 million (11,327,616) of full-text open access articles (see [https://pmc.ncbi.nlm.nih.gov/about/intro/ PMC's Archive Use Anual Report]). JSTOR, by other hand, has only 6% of its records open, in the order of 500 to 700 thousand open access articles
'''Diff:'''
{{Text diff
|1=<!-- Replace "ORIGINAL_WIKITEXT" (below this line) with the wikitext (source code) that you want to be changed. -->
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'jstor',
display = 'JSTOR'
}
},
isUsedInMainspace = true
}
|2=<!-- Replace "CHANGED_WIKITEXT" (below this line) with your requested new wikitext. -->
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'pmc',
display = 'PMC'
}
},
isUsedInMainspace = true
}
}}
[[User:Krauss|Krauss]] ([[User talk:Krauss|talk]]) 10:00, 29 June 2026 (UTC)
:Is there a reason we have to replace JSTOR instead of just adding PMC as an additional option? [[User:Primefac|Primefac]] ([[User talk:Primefac|talk]]) 10:14, 29 June 2026 (UTC)
ggh7ukewlr6v4g3zgqqy7gb8gt1ilm2
670339
670307
2026-06-29T12:44:21Z
King ChristLike
13051
9 revisions imported from [[:en:Module_talk:Find_sources/templates/Find_sources_mainspace]]
670304
Scribunto
text/plain
return {
blurb = "''Find sources:'' $1 – $2",
introLink = {
code = 'google'
},
links = {
{
code = 'google news',
display = 'news'
},
{
code = 'google newspapers',
display = 'newspapers'
},
{
code = 'google books',
display = 'books'
},
{
code = 'google scholar',
display = 'scholar'
},
{
code = 'jstor',
display = 'JSTOR'
}
},
isUsedInMainspace = true
}
k39u38p2vc24ts3y9zywym3jkiq7787
Module:Find sources/templates/Find sources mainspace/doc
828
77126
670319
2017-05-09T14:52:41Z
Ludwig20
6293
template
670319
wikitext
text/x-wiki
{{Module rating |protected}}
bku1med9sz5zmac04ox5hrh2c9114al
670320
670319
2019-02-15T21:38:27Z
Pppery
14521
Tfd tag
670320
wikitext
text/x-wiki
{{Module rating |protected}}
{{Template for discussion/dated|action=|page=Find sources/templates/Find sources mainspace/doc|link=Wikipedia:Templates for discussion/Log/2019 February 15#Module:Find sources/templates/Find sources mainspace|type=module|bigbox=yes}}T
rk1jgz812tbgwj8xn9mp8xlaz6vez7h
670321
670320
2019-02-15T21:38:34Z
Pppery
14521
670321
wikitext
text/x-wiki
{{Module rating |protected}}
{{Template for discussion/dated|action=|page=Find sources/templates/Find sources mainspace/doc|link=Wikipedia:Templates for discussion/Log/2019 February 15#Module:Find sources/templates/Find sources mainspace|type=module|bigbox=yes}}
lhm2kiy4lx8x33diene0112nvhmh0s8
670322
670321
2019-02-18T01:59:40Z
JJMC89
6760
test
670322
wikitext
text/x-wiki
{{Module rating |protected}}
<noinclude>{{Template for discussion/dated|action=|page=Find sources/templates/Find sources mainspace/doc|link=Wikipedia:Templates for discussion/Log/2019 February 15#Module:Find sources/templates/Find sources mainspace|type=module|bigbox=yes}}</noinclude>
pqu3tqubp0fthb4e57n2evky9w0yrst
670323
670322
2019-02-18T02:00:34Z
JJMC89
6760
Reverted edits by [[Special:Contribs/JJMC89|JJMC89]] ([[User talk:JJMC89|talk]]) to last version by Pppery
670323
wikitext
text/x-wiki
{{Module rating |protected}}
{{Template for discussion/dated|action=|page=Find sources/templates/Find sources mainspace/doc|link=Wikipedia:Templates for discussion/Log/2019 February 15#Module:Find sources/templates/Find sources mainspace|type=module|bigbox=yes}}
lhm2kiy4lx8x33diene0112nvhmh0s8
670324
670323
2019-02-27T12:56:55Z
Hhkohh
43865
Updating TFD template: discussion was relisted ([[WP:XFDC|XFDcloser]])
670324
wikitext
text/x-wiki
{{Module rating |protected}}
{{Template for discussion/dated|action=|page=Find sources/templates/Find sources mainspace/doc|link=Wikipedia:Templates for discussion/Log/2019 February 27#Module:Find sources/templates/Find sources mainspace|type=module|bigbox=yes}}
4bgxbskqgiv8b5ha8rmdvqt31y0z89w
670325
670324
2019-03-07T19:08:55Z
Zackmann08
14653
Updating TFD template: discussion was relisted ([[WP:XFDC|XFDcloser]])
670325
wikitext
text/x-wiki
{{Module rating |protected}}
{{Template for discussion/dated|action=|page=Find sources/templates/Find sources mainspace/doc|link=Wikipedia:Templates for discussion/Log/2019 March 7#Module:Find sources/templates/Find sources mainspace|type=module|bigbox=yes}}
0n6gcn7yvda46qnlnsm75zxzh2j0sfx
670326
670325
2019-04-28T14:29:51Z
Primefac
14502
TFD closed as no consensus ([[WP:XFDC|XFDcloser]])
670326
wikitext
text/x-wiki
{{Module rating |protected}}
bku1med9sz5zmac04ox5hrh2c9114al
670327
670326
2022-11-21T12:25:47Z
Paine Ellsworth
4319
High-use template
670327
wikitext
text/x-wiki
{{Module rating |protected}}
{{High-use}}
nh05lvdcz03m7pcuz7893p5ugb157p9
670328
670327
2024-08-29T21:23:02Z
Warudo
28465
Added the page to [[:Category:Module documentation pages]]
670328
wikitext
text/x-wiki
{{Module rating |protected}}
{{High-use}}<noinclude>
[[Category:Module documentation pages]]
</noinclude>
torr69dncebx21lxzzepexr6bslzzrn
670329
670328
2026-06-29T12:44:20Z
King ChristLike
13051
10 revisions imported from [[:en:Module:Find_sources/templates/Find_sources_mainspace/doc]]
670328
wikitext
text/x-wiki
{{Module rating |protected}}
{{High-use}}<noinclude>
[[Category:Module documentation pages]]
</noinclude>
torr69dncebx21lxzzepexr6bslzzrn
Templeeti:Eswatini topics
10
77127
670340
2008-05-27T09:03:09Z
en>Mangostar
0
[[WP:AES|←]]Created page with '{{Navbox |name = Swaziland topics |title = [[Swaziland]] topics |group1 = [[Politics of Swaziland|Politics]] and government |list1 = [[Elections in Swazilan...'
670340
wikitext
text/x-wiki
{{Navbox
|name = Swaziland topics
|title = [[Swaziland]] topics
|group1 = [[Politics of Swaziland|Politics]] and government
|list1 = [[Elections in Swaziland|Elections]]{{·}} [[Flag of Swaziland|Flag]]{{·}} [[Foreign relations of Swaziland]]{{·}} [[House of Assembly of Swaziland|House of Assembly]]{{·}} [[Military of Swaziland|Military]]{{·}} [[List of political parties in Swaziland|Political parties]]{{·}} [[List of heads of government of Swaziland|Prime Minister]]{{·}} [[Senate of Swaziland|Senate]]
|group2 = [[History of Swaziland|History]]
|list2 = [[List of kings of Swaziland|Kings]]
|group3 = [[Geography of Swaziland|Geography]] and ecology
|list3 = [[List of cities in Swaziland|Cities and towns]]{{·}} [[Districts of Swaziland|Districts]]{{·}} [[Wildlife of Swaziland|Wildlife]]
|group4 = [[Economy of Swaziland|Economy]] and infrastructure
|list4 = [[List of airports in Swaziland|Airports]]{{·}} [[Central Bank of Swaziland|Central Bank]]{{·}} [[Child labour in Swaziland|Child labour]]{{·}} [[Communications in Swaziland|Communications]]{{·}} [[List of Swazi companies|Companies]]{{·}} [[Swaziland Stock Exchange]]{{·}} [[Transport in Swaziland|Transport]]
|group5 = [[Culture of Swaziland|Culture]] and society
|list5 = [[Demographics of Swaziland|Demographics]]{{·}} [[Music of Swaziland|Music]]{{·}} [[Religion in Swaziland|Religion]]{{·}} [[List of schools in Swaziland|Schools]]{{·}} [[University of Swaziland]]
|below = [[List of Swaziland-related articles]]
| state = {{{state<includeonly>|autocollapse</includeonly>}}}
}}
kncmdr6tfbu1qgqhi70rtgfgkaisqz7
670341
670340
2008-12-10T05:12:04Z
Bookish.blogger
63981
Added flag to the title template.
670341
wikitext
text/x-wiki
{{Navbox
|name = Swaziland topics
|title = {{flagicon|Swaziland|size=24px}} [[Swaziland]] topics
|group1 = [[Politics of Swaziland|Politics]] and government
|list1 = [[Elections in Swaziland|Elections]]{{·}} [[Flag of Swaziland|Flag]]{{·}} [[Foreign relations of Swaziland]]{{·}} [[House of Assembly of Swaziland|House of Assembly]]{{·}} [[Military of Swaziland|Military]]{{·}} [[List of political parties in Swaziland|Political parties]]{{·}} [[List of heads of government of Swaziland|Prime Minister]]{{·}} [[Senate of Swaziland|Senate]]
|group2 = [[History of Swaziland|History]]
|list2 = [[List of kings of Swaziland|Kings]]
|group3 = [[Geography of Swaziland|Geography]] and ecology
|list3 = [[List of cities in Swaziland|Cities and towns]]{{·}} [[Districts of Swaziland|Districts]]{{·}} [[Wildlife of Swaziland|Wildlife]]
|group4 = [[Economy of Swaziland|Economy]] and infrastructure
|list4 = [[List of airports in Swaziland|Airports]]{{·}} [[Central Bank of Swaziland|Central Bank]]{{·}} [[Child labour in Swaziland|Child labour]]{{·}} [[Communications in Swaziland|Communications]]{{·}} [[List of Swazi companies|Companies]]{{·}} [[Swaziland Stock Exchange]]{{·}} [[Transport in Swaziland|Transport]]
|group5 = [[Culture of Swaziland|Culture]] and society
|list5 = [[Demographics of Swaziland|Demographics]]{{·}} [[Music of Swaziland|Music]]{{·}} [[Religion in Swaziland|Religion]]{{·}} [[List of schools in Swaziland|Schools]]{{·}} [[University of Swaziland]]
|below = [[List of Swaziland-related articles]]
| state = {{{state<includeonly>|autocollapse</includeonly>}}}
}}
q2oimo113y0zv78wvldwg8bnmuavu2l
670342
670341
2008-12-10T18:19:22Z
Namiba
21788
670342
wikitext
text/x-wiki
{{Navbox
|name = Swaziland topics
|title = {{flagicon|Swaziland|size=24px}} [[Swaziland]] topics
|group1 = [[Politics of Swaziland|Politics]] and government
|list1 = [[Elections in Swaziland|Elections]]{{·}} [[Flag of Swaziland|Flag]]{{·}} [[Foreign relations of Swaziland]]{{·}} [[House of Assembly of Swaziland|House of Assembly]]{{·}} [[Military of Swaziland|Military]]{{·}} [[List of political parties in Swaziland|Political parties]]{{·}} [[List of heads of government of Swaziland|Prime Minister]]{{·}} [[Senate of Swaziland|Senate]]
|group2 = [[History of Swaziland|History]]
|list2 = [[List of kings of Swaziland|Kings]]
|group3 = [[Geography of Swaziland|Geography]] and ecology
|list3 = [[List of cities in Swaziland|Cities and towns]]{{·}} [[Districts of Swaziland|Districts]]{{·}} [[Wildlife of Swaziland|Wildlife]]
|group4 = [[Economy of Swaziland|Economy]] and infrastructure
|list4 = [[List of airports in Swaziland|Airports]]{{·}} [[Central Bank of Swaziland|Central Bank]]{{·}} [[Child labour in Swaziland|Child labour]]{{·}} [[Communications in Swaziland|Communications]]{{·}} [[List of Swazi companies|Companies]]{{·}} [[Swaziland Stock Exchange]]{{·}} [[Transport in Swaziland|Transport]]
|group5 = [[Culture of Swaziland|Culture]] and society
|list5 = [[Demographics of Swaziland|Demographics]]{{·}} [[Music of Swaziland|Music]]{{·}} [[Religion in Swaziland|Religion]]{{·}}[[Islam in Swaziland|Islam]]{{·}}[[Roman Catholicism in Swaziland|Roman Catholicism]]{{·}} [[List of schools in Swaziland|Schools]]{{·}} [[University of Swaziland]]
|below = [[List of Swaziland-related articles]]
| state = {{{state<includeonly>|autocollapse</includeonly>}}}
}}
l4h4utrx9s98tynf8j2weuk3wko5sd9
670343
670342
2009-02-18T23:11:02Z
Neelix
48021
So that this link will be bolded on the corresponding article
670343
wikitext
text/x-wiki
{{Navbox
|name = Swaziland topics
|title = {{flagicon|Swaziland|size=24px}} [[Swaziland]] topics
|group1 = [[Politics of Swaziland|Politics]] and government
|list1 = [[Elections in Swaziland|Elections]]{{·}} [[Flag of Swaziland|Flag]]{{·}} [[Foreign relations of Swaziland]]{{·}} [[House of Assembly of Swaziland|House of Assembly]]{{·}} [[Military of Swaziland|Military]]{{·}} [[List of political parties in Swaziland|Political parties]]{{·}} [[List of heads of government of Swaziland|Prime Minister]]{{·}} [[Senate of Swaziland|Senate]]
|group2 = [[History of Swaziland|History]]
|list2 = [[List of kings of Swaziland|Kings]]
|group3 = [[Geography of Swaziland|Geography]] and ecology
|list3 = [[List of cities in Swaziland|Cities and towns]]{{·}} [[Districts of Swaziland|Districts]]{{·}} [[Wildlife of Swaziland|Wildlife]]
|group4 = [[Economy of Swaziland|Economy]] and infrastructure
|list4 = [[List of airports in Swaziland|Airports]]{{·}} [[Central Bank of Swaziland|Central Bank]]{{·}} [[Child labour in Swaziland|Child labour]]{{·}} [[Communications in Swaziland|Communications]]{{·}} [[List of companies of Swaziland|Companies]]{{·}} [[Swaziland Stock Exchange]]{{·}} [[Transport in Swaziland|Transport]]
|group5 = [[Culture of Swaziland|Culture]] and society
|list5 = [[Demographics of Swaziland|Demographics]]{{·}} [[Music of Swaziland|Music]]{{·}} [[Religion in Swaziland|Religion]]{{·}}[[Islam in Swaziland|Islam]]{{·}}[[Roman Catholicism in Swaziland|Roman Catholicism]]{{·}} [[List of schools in Swaziland|Schools]]{{·}} [[University of Swaziland]]
|below = [[List of Swaziland-related articles]]
| state = {{{state<includeonly>|autocollapse</includeonly>}}}
}}
2qx8xclxehv68v31xzawvf6nqy2yt18
670344
670343
2010-06-03T08:03:01Z
DASHBot
46752
[[WP:BOT|Bot]]: [[WP:R#Bypass_redirects_in_navigational_templates|Bypassing redirects in navboxes]], in order to improve article navigability;[[User:DASHBot/d|details/shutoff]]
670344
wikitext
text/x-wiki
{{Navbox
|name = Swaziland topics
|title = {{flagicon|Swaziland|size=24px}} [[Swaziland]] topics
|group1 = [[Politics of Swaziland|Politics]] and government
|list1 = [[Elections in Swaziland|Elections]]{{·}} [[Flag of Swaziland|Flag]]{{·}} [[Foreign relations of Swaziland]]{{·}} [[House of Assembly of Swaziland|House of Assembly]]{{·}} [[Military of Swaziland|Military]]{{·}} [[List of political parties in Swaziland|Political parties]]{{·}} [[List of heads of government of Swaziland|Prime Minister]]{{·}} [[Senate of Swaziland|Senate]]
|group2 = [[History of Swaziland|History]]
|list2 = [[List of kings of Swaziland|Kings]]
|group3 = [[Geography of Swaziland|Geography]] and ecology
|list3 = [[List of cities in Swaziland|Cities and towns]]{{·}} [[Districts of Swaziland|Districts]]{{·}} [[Wildlife of Swaziland|Wildlife]]
|group4 = [[Economy of Swaziland|Economy]] and infrastructure
|list4 = [[List of airports in Swaziland|Airports]]{{·}} [[Central Bank of Swaziland|Central Bank]]{{·}} [[Child labour in Swaziland|Child labour]]{{·}} [[Telecommunications in Swaziland|Communications]]{{·}} [[List of companies of Swaziland|Companies]]{{·}} [[Swaziland Stock Exchange]]{{·}} [[Transport in Swaziland|Transport]]
|group5 = [[Culture of Swaziland|Culture]] and society
|list5 = [[Demographics of Swaziland|Demographics]]{{·}} [[Music of Swaziland|Music]]{{·}} [[Religion in Swaziland|Religion]]{{·}}[[Islam in Swaziland|Islam]]{{·}}[[Roman Catholicism in Swaziland|Roman Catholicism]]{{·}} [[List of schools in Swaziland|Schools]]{{·}} [[University of Swaziland]]
|below = [[List of Swaziland-related articles]]
| state = {{{state<includeonly>|autocollapse</includeonly>}}}
}}
fa7quzmf42srgsm3hq8zzv0ztoqno3b
670345
670344
2010-10-11T20:54:24Z
Black Falcon
14533
added category '[[:Category:Country and territory topics templates|Country and territory topics templates]]' and '[[Category:Swaziland templates|Swaziland templates]]'
670345
wikitext
text/x-wiki
{{Navbox
|name = Swaziland topics
|title = {{flagicon|Swaziland|size=24px}} [[Swaziland]] topics
|group1 = [[Politics of Swaziland|Politics]] and government
|list1 = [[Elections in Swaziland|Elections]]{{·}} [[Flag of Swaziland|Flag]]{{·}} [[Foreign relations of Swaziland]]{{·}} [[House of Assembly of Swaziland|House of Assembly]]{{·}} [[Military of Swaziland|Military]]{{·}} [[List of political parties in Swaziland|Political parties]]{{·}} [[List of heads of government of Swaziland|Prime Minister]]{{·}} [[Senate of Swaziland|Senate]]
|group2 = [[History of Swaziland|History]]
|list2 = [[List of kings of Swaziland|Kings]]
|group3 = [[Geography of Swaziland|Geography]] and ecology
|list3 = [[List of cities in Swaziland|Cities and towns]]{{·}} [[Districts of Swaziland|Districts]]{{·}} [[Wildlife of Swaziland|Wildlife]]
|group4 = [[Economy of Swaziland|Economy]] and infrastructure
|list4 = [[List of airports in Swaziland|Airports]]{{·}} [[Central Bank of Swaziland|Central Bank]]{{·}} [[Child labour in Swaziland|Child labour]]{{·}} [[Telecommunications in Swaziland|Communications]]{{·}} [[List of companies of Swaziland|Companies]]{{·}} [[Swaziland Stock Exchange]]{{·}} [[Transport in Swaziland|Transport]]
|group5 = [[Culture of Swaziland|Culture]] and society
|list5 = [[Demographics of Swaziland|Demographics]]{{·}} [[Music of Swaziland|Music]]{{·}} [[Religion in Swaziland|Religion]]{{·}}[[Islam in Swaziland|Islam]]{{·}}[[Roman Catholicism in Swaziland|Roman Catholicism]]{{·}} [[List of schools in Swaziland|Schools]]{{·}} [[University of Swaziland]]
|below = [[List of Swaziland-related articles]]
| state = {{{state<includeonly>|autocollapse</includeonly>}}}
}}<noinclude>
[[Category:Country and territory topics templates]]
[[Category:Swaziland templates]]
</noinclude>
0nohcscueh9zhtzl1rochederdcv1kv
670346
670345
2010-10-11T20:55:26Z
Black Falcon
14533
added [[Languages of Swaziland]], minor organizational change
670346
wikitext
text/x-wiki
{{Navbox
|name = Swaziland topics
|title = {{flagicon|Swaziland|size=24px}} [[Swaziland]] topics
|group1 = [[Politics of Swaziland|Politics]] and government
|list1 = [[Elections in Swaziland|Elections]]{{·}} [[Flag of Swaziland|Flag]]{{·}} [[Foreign relations of Swaziland]]{{·}} [[House of Assembly of Swaziland|House of Assembly]]{{·}} [[Military of Swaziland|Military]]{{·}} [[List of political parties in Swaziland|Political parties]]{{·}} [[List of heads of government of Swaziland|Prime Minister]]{{·}} [[Senate of Swaziland|Senate]]
|group2 = [[History of Swaziland|History]]
|list2 = [[List of kings of Swaziland|Kings]]
|group3 = [[Geography of Swaziland|Geography]] and ecology
|list3 = [[List of cities in Swaziland|Cities and towns]]{{·}} [[Districts of Swaziland|Districts]]{{·}} [[Wildlife of Swaziland|Wildlife]]
|group4 = [[Economy of Swaziland|Economy]] and infrastructure
|list4 = [[List of airports in Swaziland|Airports]]{{·}} [[Central Bank of Swaziland|Central Bank]]{{·}} [[Child labour in Swaziland|Child labour]]{{·}} [[Telecommunications in Swaziland|Communications]]{{·}} [[List of companies of Swaziland|Companies]]{{·}} [[Swaziland Stock Exchange]]{{·}} [[Transport in Swaziland|Transport]]
|group5 = [[Culture of Swaziland|Culture]] and society
|list5 = [[Demographics of Swaziland|Demographics]]{{·}} [[Languages of Swaziland|Languages]]{{·}} [[Music of Swaziland|Music]]{{·}} [[Religion in Swaziland|Religion]] ([[Islam in Swaziland|Islam]]{{·}} [[Roman Catholicism in Swaziland|Roman Catholicism]]) {{·}} [[List of schools in Swaziland|Schools]]{{·}} [[University of Swaziland]]
|below = [[List of Swaziland-related articles]]
| state = {{{state<includeonly>|autocollapse</includeonly>}}}
}}<noinclude>
[[Category:Country and territory topics templates]]
[[Category:Swaziland templates]]
</noinclude>
ftg3w42lfemzsfslvmko4p4ckdoib65
670347
670346
2010-12-17T10:28:33Z
Sundostund
44382
670347
wikitext
text/x-wiki
{{Navbox
|name = Swaziland topics
|title = {{flagicon|Swaziland|size=24px}} [[Swaziland]] topics
|group1 = [[Politics of Swaziland|Politics]] and government
|list1 = [[Elections in Swaziland|Elections]]{{·}} [[Flag of Swaziland|Flag]]{{·}} [[Foreign relations of Swaziland|Foreign relations]]{{·}} [[House of Assembly of Swaziland|House of Assembly]]{{·}} [[Military of Swaziland|Military]]{{·}} [[List of political parties in Swaziland|Political parties]]{{·}} [[List of heads of government of Swaziland|Prime Minister]]{{·}} [[Senate of Swaziland|Senate]]
|group2 = [[History of Swaziland|History]]
|list2 = [[List of kings of Swaziland|Kings]]
|group3 = [[Geography of Swaziland|Geography]] and ecology
|list3 = [[List of cities in Swaziland|Cities and towns]]{{·}} [[Districts of Swaziland|Districts]]{{·}} [[Wildlife of Swaziland|Wildlife]]
|group4 = [[Economy of Swaziland|Economy]] and infrastructure
|list4 = [[List of airports in Swaziland|Airports]]{{·}} [[Central Bank of Swaziland|Central Bank]]{{·}} [[Child labour in Swaziland|Child labour]]{{·}} [[Telecommunications in Swaziland|Communications]]{{·}} [[List of companies of Swaziland|Companies]]{{·}} [[Swaziland Stock Exchange]]{{·}} [[Transport in Swaziland|Transport]]
|group5 = [[Culture of Swaziland|Culture]] and society
|list5 = [[Demographics of Swaziland|Demographics]]{{·}} [[Languages of Swaziland|Languages]]{{·}} [[Music of Swaziland|Music]]{{·}} [[Religion in Swaziland|Religion]] ([[Islam in Swaziland|Islam]]{{·}} [[Roman Catholicism in Swaziland|Roman Catholicism]]) {{·}} [[List of schools in Swaziland|Schools]]{{·}} [[University of Swaziland]]
|below = [[List of Swaziland-related articles]]
| state = {{{state<includeonly>|autocollapse</includeonly>}}}
}}<noinclude>
[[Category:Country and territory topics templates]]
[[Category:Swaziland templates]]
</noinclude>
03k87x8zel0sednz7fbsl30g96hnnvn
670348
670347
2011-03-04T06:26:46Z
DASHBot
46752
[[WP:BOT|Bot]]:Bypassing redirects in NavBox.
670348
wikitext
text/x-wiki
{{Navbox
|name = Swaziland topics
|title = {{flagicon|Swaziland|size=24px}} [[Swaziland]] topics
|group1 = [[Politics of Swaziland|Politics]] and government
|list1 = [[Elections in Swaziland|Elections]]{{·}} [[Flag of Swaziland|Flag]]{{·}} [[Foreign relations of Swaziland|Foreign relations]]{{·}} [[House of Assembly of Swaziland|House of Assembly]]{{·}} [[Military of Swaziland|Military]]{{·}} [[List of political parties in Swaziland|Political parties]]{{·}} [[List of heads of government of Swaziland|Prime Minister]]{{·}} [[Senate of Swaziland|Senate]]
|group2 = [[History of Swaziland|History]]
|list2 = [[List of kings of Swaziland|Kings]]
|group3 = [[Geography of Swaziland|Geography]] and ecology
|list3 = [[List of cities in Swaziland|Cities and towns]]{{·}} [[Districts of Swaziland|Districts]]{{·}} [[Wildlife of Swaziland|Wildlife]]
|group4 = [[Economy of Swaziland|Economy]] and infrastructure
|list4 = [[List of airports in Swaziland|Airports]]{{·}} [[Central Bank of Swaziland|Central Bank]]{{·}} [[Child labour in Swaziland|Child labour]]{{·}} [[Telecommunications in Swaziland|Communications]]{{·}} [[List of companies of Swaziland|Companies]]{{·}} [[Swaziland Stock Exchange]]{{·}} [[Transport in Swaziland|Transport]]
|group5 = [[Culture of Swaziland|Culture]] and society
|list5 = [[Demographics of Swaziland|Demographics]]{{·}} [[Languages of Swaziland|Languages]]{{·}} [[Music of Swaziland|Music]]{{·}} [[Religion in Swaziland|Religion]] ([[Islam in Swaziland|Islam]]{{·}} [[Roman Catholicism in Swaziland|Roman Catholicism]]) {{·}} [[List of schools in Swaziland|Schools]]{{·}} [[University of Swaziland]]
|below = [[Index of Swaziland-related articles|List of Swaziland-related articles]]
| state = {{{state<includeonly>|autocollapse</includeonly>}}}
}}<noinclude>
[[Category:Country and territory topics templates]]
[[Category:Swaziland templates]]
</noinclude>
fwocogq5pigthkfw01c79u6itjlie73
670349
670348
2012-08-04T11:21:22Z
WOSlinker
3423
use listclass = hlist in navbox as per [[WP:HLIST]]
670349
wikitext
text/x-wiki
{{Navbox
|name = Swaziland topics
|title = {{flagicon|Swaziland|size=24px}} [[Swaziland]] topics
|listclass = hlist
|group1 = [[Politics of Swaziland|Politics]] and government
|list1 =
* [[Elections in Swaziland|Elections]]
* [[Flag of Swaziland|Flag]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[House of Assembly of Swaziland|House of Assembly]]
* [[Military of Swaziland|Military]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of heads of government of Swaziland|Prime Minister]]
* [[Senate of Swaziland|Senate]]
|group2 = [[History of Swaziland|History]]
|list2 =
* [[List of kings of Swaziland|Kings]]
|group3 = [[Geography of Swaziland|Geography]] and ecology
|list3 =
* [[List of cities in Swaziland|Cities and towns]]
* [[Districts of Swaziland|Districts]]
* [[Wildlife of Swaziland|Wildlife]]
|group4 = [[Economy of Swaziland|Economy]] and infrastructure
|list4 =
* [[List of airports in Swaziland|Airports]]
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[Telecommunications in Swaziland|Communications]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange]]
* [[Transport in Swaziland|Transport]]
|group5 = [[Culture of Swaziland|Culture]] and society
|list5 =
* [[Demographics of Swaziland|Demographics]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]] ([[Islam in Swaziland|Islam]]
* [[Roman Catholicism in Swaziland|Roman Catholicism]])
* [[List of schools in Swaziland|Schools]]
* [[University of Swaziland]]
|below = [[Index of Swaziland-related articles|List of Swaziland-related articles]]
| state = {{{state<includeonly>|autocollapse</includeonly>}}}
}}<noinclude>
[[Category:Country and territory topics templates]]
[[Category:Swaziland templates]]
</noinclude>
thgdpo69agp1yozmvmbq3xux0tlzf28
670350
670349
2013-01-06T16:30:26Z
CsDix
31287
Converted to {{Country topics}}, category
670350
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|flagsize = 25px
|adjective = Swazi
|history =
* [[List of kings of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Districts of Swaziland|Districts]]
* [[Wildlife of Swaziland|Wildlife]]
|governance = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland]]
** [[House of Assembly of Swaziland|House of Assembly]]
** [[Senate of Swaziland|Senate]]
* [[Politics of Swaziland|Politics]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of heads of government of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Roman Catholicism]]
}}<noinclude>
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
</noinclude>
la1tto148p2dz65zbno2my8u86wnyhw
670351
670350
2013-01-06T16:30:53Z
CsDix
31287
linkname
670351
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|flagsize = 25px
|adjective = Swazi
|history =
* [[List of kings of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Districts of Swaziland|Districts]]
* [[Wildlife of Swaziland|Wildlife]]
|governance = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[House of Assembly of Swaziland|House of Assembly]]
** [[Senate of Swaziland|Senate]]
* [[Politics of Swaziland|Politics]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of heads of government of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Roman Catholicism]]
}}<noinclude>
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
</noinclude>
51a46zz3w4ky5wrmfzbtoiudd557d6m
670352
670351
2013-01-25T16:30:18Z
Sundostund
44382
670352
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|flagsize = 25px
|adjective = Swazi
|history =
* [[List of Kings of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Districts of Swaziland|Districts]]
* [[Wildlife of Swaziland|Wildlife]]
|governance = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[House of Assembly of Swaziland|House of Assembly]]
** [[Senate of Swaziland|Senate]]
* [[Politics of Swaziland|Politics]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of heads of government of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Roman Catholicism]]
}}<noinclude>
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
</noinclude>
ik5kwxu5x0aef8ji3m3kb5tkd7hbksb
670353
670352
2013-12-01T14:28:49Z
S0ch1
63982
670353
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|flagsize = 25px
|adjective = Swazi
|history =
* [[List of Kings of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Districts of Swaziland|Districts]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[House of Assembly of Swaziland|House of Assembly]]
** [[Senate of Swaziland|Senate]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of heads of government of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Roman Catholicism]]
}}<noinclude>
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
</noinclude>
4y1sey2krb9usm5zwdzwcdny7iup0rf
670354
670353
2014-02-23T14:46:04Z
Lugnuts
49249
670354
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|flagsize = 25px
|adjective = Swazi
|history =
* [[List of Kings of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Districts of Swaziland|Districts]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[House of Assembly of Swaziland|House of Assembly]]
** [[Senate of Swaziland|Senate]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of heads of government of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Roman Catholicism]]
}}<noinclude>
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
</noinclude>
56jovom99qvn1w0kho0bqjdkvtao935
670355
670354
2015-04-20T19:48:13Z
Frietjes
14509
670355
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|adjective = Swazi
|history =
* [[List of Kings of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Districts of Swaziland|Districts]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[House of Assembly of Swaziland|House of Assembly]]
** [[Senate of Swaziland|Senate]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of heads of government of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Roman Catholicism]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
pi87kb7735mm4lcvy0h7soyqbtirqif
670356
670355
2016-02-21T11:56:00Z
Plucas58
63983
Add History of Swaziland
670356
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of Kings of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Districts of Swaziland|Districts]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[House of Assembly of Swaziland|House of Assembly]]
** [[Senate of Swaziland|Senate]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of heads of government of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Roman Catholicism]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
fbypt8t56whhd2w21nn6low0nfhbffx
670357
670356
2016-10-17T23:40:47Z
Sundostund
44382
670357
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of Kings of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Districts of Swaziland|Districts]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[House of Assembly of Swaziland|House of Assembly]]
** [[Senate of Swaziland|Senate]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Roman Catholicism]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
d8srsxv6pack19aotsw5xz79980b4zo
670358
670357
2016-11-14T15:33:07Z
Ms Sarah Welch
49129
add
670358
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of Kings of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Districts of Swaziland|Districts]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[House of Assembly of Swaziland|House of Assembly]]
** [[Senate of Swaziland|Senate]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglican Christians]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Catholicism]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
3u97r3am3spbnd2wr8jbb2psmojmt0j
670359
670358
2016-11-20T23:51:26Z
Good Olfactory
14645
regions
670359
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of Kings of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[House of Assembly of Swaziland|House of Assembly]]
** [[Senate of Swaziland|Senate]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglican Christians]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Catholicism]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
0317wak8qp0zv6eixg0mp3sgjtj2qyd
670360
670359
2016-12-13T15:17:56Z
Tahc
57970
List of monarchs of Swaziland
670360
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[House of Assembly of Swaziland|House of Assembly]]
** [[Senate of Swaziland|Senate]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglican Christians]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Catholicism]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
ihz61pfec15k9hvnrprc4si2ipc6d53
670361
670360
2017-03-30T01:33:29Z
Nikolai Romanov
63984
670361
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Law enforcement in Swaziland|Law enforcement]]
* [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[House of Assembly of Swaziland|House of Assembly]]
** [[Senate of Swaziland|Senate]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglican Christians]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Catholicism]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
ayfz9nkyx60n8n8tsmnxsvte0uyyqyc
670362
670361
2017-07-21T00:51:35Z
Sundostund
44382
670362
wikitext
text/x-wiki
{{Country topics
|country = Lesotho
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Swaziland.svg|border|100px|link=Flag of Swaziland]]
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Law enforcement in Swaziland|Law enforcement]]
* [[LGBT rights in Swaziland|LGBT rights]]
** [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[Senate of Swaziland|Senate]]
** [[House of Assembly of Swaziland|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglican Christians]]
** [[Islam in Swaziland|Islam]]
** [[Roman Catholicism in Swaziland|Catholicism]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
mohcbz6g1pw0o4yr5r9ctky16sjoy9g
670363
670362
2017-07-21T00:53:12Z
Sundostund
44382
670363
wikitext
text/x-wiki
{{Country topics
|country = Lesotho
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Swaziland.svg|border|100px|link=Flag of Swaziland]]
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Law enforcement in Swaziland|Law enforcement]]
* [[LGBT rights in Swaziland|LGBT rights]]
** [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[Senate of Swaziland|Senate]]
** [[House of Assembly of Swaziland|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Swaziland|Roman Catholicism]]
** [[Islam in Swaziland|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
fw14lyheo2jrvxrzr60xyl5j3goxdox
670364
670363
2017-07-21T00:55:33Z
Sundostund
44382
670364
wikitext
text/x-wiki
{{Country topics
|country = Swaziland
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Swaziland.svg|border|100px|link=Flag of Swaziland]]
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Law enforcement in Swaziland|Law enforcement]]
* [[LGBT rights in Swaziland|LGBT rights]]
** [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[Senate of Swaziland|Senate]]
** [[House of Assembly of Swaziland|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Swaziland|Roman Catholicism]]
** [[Islam in Swaziland|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
shagp7sfqdtufljly9jcmnyd9e0s98k
670365
670364
2018-10-23T20:49:25Z
Timrollpickering
14530
country article has been renamed
670365
wikitext
text/x-wiki
{{Country topics
|country = eSwatini
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Swaziland.svg|border|100px|link=Flag of Swaziland]]
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Law enforcement in Swaziland|Law enforcement]]
* [[LGBT rights in Swaziland|LGBT rights]]
** [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[Senate of Swaziland|Senate]]
** [[House of Assembly of Swaziland|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Swaziland|Roman Catholicism]]
** [[Islam in Swaziland|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
sh21dbgi48n4kia2ogixxdcny597g7i
670366
670365
2018-10-23T20:49:41Z
Timrollpickering
14530
Timrollpickering moved page [[Template:Swaziland topics]] to [[Template:ESwatini topics]]: per country article
670365
wikitext
text/x-wiki
{{Country topics
|country = eSwatini
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Swaziland.svg|border|100px|link=Flag of Swaziland]]
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Law enforcement in Swaziland|Law enforcement]]
* [[LGBT rights in Swaziland|LGBT rights]]
** [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[Senate of Swaziland|Senate]]
** [[House of Assembly of Swaziland|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Swaziland|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Swaziland|Roman Catholicism]]
** [[Islam in Swaziland|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
sh21dbgi48n4kia2ogixxdcny597g7i
670367
670366
2018-10-23T22:59:05Z
Paintspot
49035
...Okay then. If you're doing that, then it's helpful to also list it as Swaziland in the header (as listed as an example for Myanmar).
670367
wikitext
text/x-wiki
{{Country topics
|template_name = ESwatini topics
|country = eSwatini (Swaziland)
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Swaziland.svg|border|100px|link=Flag of eSwatini]]
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Law enforcement in Swaziland|Law enforcement]]
* [[LGBT rights in Swaziland|LGBT rights]]
** [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[Senate of Swaziland|Senate]]
** [[House of Assembly of Swaziland|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of eSwatini|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Swaziland|Roman Catholicism]]
** [[Islam in Swaziland|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
1s1e6ux5mz02k29c9octemvtqxadt8o
670368
670367
2018-11-01T04:44:27Z
Wiz9999
51237
Standardising on chosen title spelling of "Eswatini" over "eSwatini", as per the move discussion on talk page of [[Eswatini]] article.
670368
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini (Swaziland)
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Swaziland.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Law enforcement in Swaziland|Law enforcement]]
* [[LGBT rights in Swaziland|LGBT rights]]
** [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[Senate of Swaziland|Senate]]
** [[House of Assembly of Swaziland|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Swaziland|Roman Catholicism]]
** [[Islam in Swaziland|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
jbcqj02dw6lqp2nexo3u2q5j9vd94ih
670369
670368
2018-11-01T04:45:03Z
Wiz9999
51237
Wiz9999 moved page [[Template:ESwatini topics]] to [[Template:Eswatini topics]]: Standardising on chosen title spelling of "Eswatini" over "eSwatini", as per the move discussion on talk page of [[Eswatini]] article.
670368
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini (Swaziland)
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Swaziland.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Law enforcement in Swaziland|Law enforcement]]
* [[LGBT rights in Swaziland|LGBT rights]]
** [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[Senate of Swaziland|Senate]]
** [[House of Assembly of Swaziland|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Swaziland|Roman Catholicism]]
** [[Islam in Swaziland|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Swaziland templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
jbcqj02dw6lqp2nexo3u2q5j9vd94ih
670370
670369
2018-11-01T09:15:10Z
Wiz9999
51237
Fixing Category.
670370
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini (Swaziland)
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Swaziland.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Law enforcement in Swaziland|Law enforcement]]
* [[LGBT rights in Swaziland|LGBT rights]]
** [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[Senate of Swaziland|Senate]]
** [[House of Assembly of Swaziland|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Swaziland|Roman Catholicism]]
** [[Islam in Swaziland|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
cnt5m3jdqr66a0p7d4a6piljwybu4wi
670371
670370
2018-11-04T01:42:48Z
Ludvonga
63985
Adding the govt of eswatini
670371
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini (Swaziland)
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Swaziland.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Government of Eswatini|Government]]
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Law enforcement in Swaziland|Law enforcement]]
* [[LGBT rights in Swaziland|LGBT rights]]
** [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[Senate of Swaziland|Senate]]
** [[House of Assembly of Swaziland|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Swaziland|Roman Catholicism]]
** [[Islam in Swaziland|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
t15ibccloy1t2kfyarv3s9bwskcik7f
670372
670371
2018-11-06T21:35:47Z
CommonsDelinker
87
Replacing Flag_of_Swaziland.svg with [[File:Flag_of_Eswatini.svg]] (by [[commons:User:CommonsDelinker|CommonsDelinker]] because: [[:c:COM:FR|File renamed]]: [[:c:COM:FR#FR3|Criterion 3]] (obvious error) · The name in en.wiki has been changed to [[:c::en:E
670372
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini (Swaziland)
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Swaziland]]
* [[List of monarchs of Swaziland|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Swaziland|Cities and towns]]
* [[Regions of Swaziland|Regions]]
* [[Wildlife of Swaziland|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Government of Eswatini|Government]]
* [[Elections in Swaziland|Elections]]
* [[Foreign relations of Swaziland|Foreign relations]]
* [[Law enforcement in Swaziland|Law enforcement]]
* [[LGBT rights in Swaziland|LGBT rights]]
** [[LGBT history in Swaziland|LGBT history]]
* [[Military of Swaziland|Military]]
* [[Parliament of Swaziland|Parliament]]
** [[Senate of Swaziland|Senate]]
** [[House of Assembly of Swaziland|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Swaziland|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Swaziland|Central Bank]]
* [[Child labour in Swaziland|Child labour]]
* [[List of companies of Swaziland|Companies]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Swaziland|Transport]]
** [[List of airports in Swaziland|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Swaziland|Culture]]
* [[Demographics of Swaziland|Demographics]]
* [[Education in Swaziland|Education]]
** [[List of schools in Swaziland|schools]]
** [[University of Swaziland|university]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Swaziland|Languages]]
* [[Music of Swaziland|Music]]
* [[Religion in Swaziland|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Swaziland|Roman Catholicism]]
** [[Islam in Swaziland|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
ln58inm52265qky59fx9qzvcq0d0ct1
670373
670372
2018-11-08T23:56:03Z
Paintspot
49035
Geology, Prostitution, and Mining industry pages. Also, alphabetizing and new page names.
670373
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini (Swaziland)
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini]]
* [[List of monarchs of Eswatini|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Government of Eswatini|Government]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
** [[LGBT history in Eswatini|LGBT history]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining industry]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Eswatini|Transport]]
** [[List of airports in Eswatini|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
** [[List of schools in Eswatini|schools]]
** [[University of Eswatini|university]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Eswatini|Roman Catholicism]]
** [[Islam in Eswatini|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
79915rcuh9seo8luu6fbtyql01kcvrx
670374
670373
2018-11-08T23:58:12Z
Paintspot
49035
LGBT history article is just a redirect.
670374
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini (Swaziland)
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini]]
* [[List of monarchs of Eswatini|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Government of Eswatini|Government]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining industry]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
* [[Transport in Eswatini|Transport]]
** [[List of airports in Eswatini|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
** [[List of schools in Eswatini|schools]]
** [[University of Eswatini|university]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Eswatini|Roman Catholicism]]
** [[Islam in Eswatini|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
ss31s1sbzwlrbcqb6oe0f53a4zxxp2x
670375
670374
2018-11-11T01:49:31Z
Paintspot
49035
Telephone numbers.
670375
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini (Swaziland)
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini]]
* [[List of monarchs of Eswatini|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Government of Eswatini|Government]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining industry]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
** [[Telephone numbers in Swaziland|Telephone numbers]]
* [[Transport in Eswatini|Transport]]
** [[List of airports in Eswatini|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
** [[List of schools in Eswatini|schools]]
** [[University of Eswatini|university]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Eswatini|Roman Catholicism]]
** [[Islam in Eswatini|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
k5540fd2twgcmg83k5ps5zmixu9kvt1
670376
670375
2018-11-30T06:40:58Z
123.142.152.43
670376
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini]]
* [[List of monarchs of Eswatini|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Government of Eswatini|Government]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining industry]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
** [[Telephone numbers in Swaziland|Telephone numbers]]
* [[Transport in Eswatini|Transport]]
** [[List of airports in Eswatini|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
** [[List of schools in Eswatini|schools]]
** [[University of Eswatini|university]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Eswatini|Roman Catholicism]]
** [[Islam in Eswatini|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
86y6ugticcdwnkjaj02wtmkg0qgafk3
670377
670376
2019-01-09T18:40:41Z
Paintspot
49035
Human rights as well.
670377
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini]]
* [[List of monarchs of Eswatini|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Government of Eswatini|Government]]
* [[Human rights in Eswatini|Human rights]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining industry]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
** [[Telephone numbers in Swaziland|Telephone numbers]]
* [[Transport in Eswatini|Transport]]
** [[List of airports in Eswatini|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
** [[List of schools in Eswatini|schools]]
** [[University of Eswatini|university]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Eswatini|Roman Catholicism]]
** [[Islam in Eswatini|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
ksehj87g3uqhydi5ogqpk0larhpp9n5
670378
670377
2019-01-30T21:38:02Z
Koavf
36
670378
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|autocollapse}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini]]
* [[List of monarchs of Eswatini|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Swaziland|Political parties]]
* [[List of Prime Ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining industry]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Swaziland|Telecommunications]]
** [[Telephone numbers in Swaziland|Telephone numbers]]
* [[Transport in Eswatini|Transport]]
** [[List of airports in Eswatini|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
** [[List of schools in Eswatini|schools]]
** [[University of Eswatini|university]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
** [[Diocese of Swaziland|Anglicanism]]
** [[Catholic Church in Eswatini|Roman Catholicism]]
** [[Islam in Eswatini|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option |statename=optional}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
r3k4yp7187ew5rttswvknhy2t2dly0i
670379
670378
2019-02-09T15:56:10Z
Jay D. Easy
31323
670379
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[List of monarchs of Eswatini|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
* [[List of Prime Ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining industry]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
** [[Telephone numbers in Eswatini|Telephone numbers]]
* [[Transport in Eswatini|Transport]]
** [[List of airports in Eswatini|airports]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
** [[List of schools in Eswatini|schools]]
** [[University of Eswatini|university]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
** [[Diocese of Eswatini|Anglicanism]]
** [[Catholic Church in Eswatini|Roman Catholicism]]
** [[Islam in Eswatini|Islam]]
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
gietx6ifdpnnuycjy0tf3fsfxqagiyu
670380
670379
2019-06-03T11:29:56Z
Hindbærbrus
63986
Trim cruft growth
670380
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[List of monarchs of Eswatini|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
* [[List of Prime Ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
gvtscpwr1crm3vjmcg60s0d96fnnknp
670381
670380
2019-07-25T21:25:52Z
Gabriel Kielland
63987
History of Eswatini
670381
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini|Overview]]
* [[List of monarchs of Eswatini|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
* [[List of Prime Ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
ktyikt8shpav26d4t3jla06cddnxhb0
670382
670381
2020-04-30T04:31:05Z
Chongkian
4452
match article name
670382
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini|Overview]]
* [[List of monarchs of Eswatini|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
* [[List of prime ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
cmf9ssq7cg3kouyjw8pwlq0znk5ksk7
670383
670382
2020-07-16T20:21:43Z
Lefcentreright
15736
Added cabinet
670383
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini|Overview]]
* [[List of monarchs of Eswatini|Kings]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
* [[List of prime ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
q3eqjomfdf5q8l6mbu2y089icvkwfld
670384
670383
2020-08-18T04:11:13Z
TazmilyKoala
63988
added newly created article
670384
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini|Overview]]
* [[List of monarchs of Eswatini|Kings]]
* [[Eswatini in World War II]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
* [[List of prime ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Swaziland Stock Exchange|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
7jq4j29f6jxs0z0o3b7aqxq5a31v7i1
670385
670384
2021-11-24T10:49:34Z
DownTownRich
49143
Update [[Eswatini Stock Market]]
670385
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini|Overview]]
* [[List of monarchs of Eswatini|Kings]]
* [[Eswatini in World War II]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
* [[List of prime ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
5gou94fb1m6syhko8athl3uk87pwy0z
670386
670385
2021-12-16T22:11:07Z
Certes
37943
no portal
670386
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini|Overview]]
* [[List of monarchs of Eswatini|Kings]]
* [[Eswatini in World War II]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
* [[List of prime ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
1byjkn9tdl82t293sk7vp8at9ccskuc
670387
670386
2022-07-21T03:45:39Z
Catlemur
49702
2021 Eswatini protests
670387
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini|Overview]]
* [[List of monarchs of Eswatini|Kings]]
* [[Eswatini in World War II]]
* [[2021 Eswatini protests]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
* [[List of prime ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
hpfq993f7fw1vurvd26mre0gbfaqqrw
670388
670387
2022-07-21T03:48:11Z
Catlemur
49702
Second Boer War
670388
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[History of Eswatini|Overview]]
* [[List of monarchs of Eswatini|Kings]]
* [[Second Boer War]]
* [[Eswatini in World War II]]
* [[2021 Eswatini protests]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[LGBT rights in Eswatini|LGBT rights]]
* [[Military of Eswatini|Military]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
* [[List of prime ministers of Eswatini|Prime Minister]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
goda8vr6lh3zggl3nph5x95ps10nh1j
670389
670388
2022-10-12T10:00:50Z
Sundostund
44382
670389
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II]]
* [[2021 Eswatini protests]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
daw3616t6s28drg5onsbt630zk640vk
670390
670389
2022-10-12T10:04:19Z
Sundostund
44382
670390
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II|World War II]]
* [[2021–2022 Eswatini protests|2021–2022 protests]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
j3f5a2bk7gq6swlp472hdwicxfile04
670391
670390
2022-10-28T22:12:52Z
Sundostund
44382
670391
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II|World War II]]
* [[2021–2022 Eswatini protests|2021–2022 protests]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
** [[Umbutfo Eswatini Defence Force#Commanders|Commander]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
hgstf6r1c50b4zup9h521mafnirrh3i
670392
670391
2023-09-08T22:04:02Z
Jarble
3981
adding a [[Help:Labeled section transclusion|labeled section]]
670392
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
<section begin=History />
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II|World War II]]
* [[2021–2022 Eswatini protests|2021–2022 protests]]
<section end=History />
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
** [[Umbutfo Eswatini Defence Force#Commanders|Commander]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
jvqam6rd80k9d6hhazv3ietj17xv2qq
670393
670392
2023-09-09T15:52:32Z
36.230.201.216
670393
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
<section begin=History />
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II|World War II]]
* [[2021–2023 Eswatini protests|2021–2023 protests]]
<section end=History />
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
** [[Umbutfo Eswatini Defence Force#Commanders|Commander]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
ljgbufht6wansijv36aagjz4whm8yhe
670394
670393
2023-10-12T21:44:04Z
Sundostund
44382
670394
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
<section begin=History />
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II|World War II]]
* [[2021–2023 Eswatini protests|2021–2023 protests]]
<section end=History />
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[Ngwenyama]]
* [[Ndlovukati]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
** [[Umbutfo Eswatini Defence Force#Commanders|Commander]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
msc8mq5foxnleqd7vbzfprt4925xpis
670395
670394
2024-08-12T00:43:25Z
Vigilantcosmicpenguin
13916
+Abortion
670395
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|image = [[File:Flag of Eswatini.svg|border|100px|link=Flag of Eswatini]]
|adjective = Swazi
|history =
<section begin=History />
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II|World War II]]
* [[2021–2023 Eswatini protests|2021–2023 protests]]
<section end=History />
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[Ngwenyama]]
* [[Ndlovukati]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
** [[Umbutfo Eswatini Defence Force#Commanders|Commander]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Abortion in Eswatini|Abortion]]
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
6wh6i67kp1hf3uzsme4aj8gk0qidd0b
670396
670395
2025-03-29T12:00:08Z
Absolutiva
52219
[[WP:NAVIMAGES]]
670396
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|adjective = Swazi
|history =
<section begin=History />
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II|World War II]]
* [[2021–2023 Eswatini protests|2021–2023 protests]]
<section end=History />
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[Ngwenyama]]
* [[Ndlovukati]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
** [[Umbutfo Eswatini Defence Force#Commanders|Commander]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Abortion in Eswatini|Abortion]]
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
q82scpf1sszt4e8fy0m5euubdzyquwm
670397
670396
2025-11-05T19:38:53Z
Nederlandse Leeuw
13930
TfM
670397
wikitext
text/x-wiki
{{Tfm/dated|page=Culture of Eswatini|otherpage=Eswatini topics|link=Wikipedia:Templates for discussion/Log/2025 November 5#Culture sidebars part 9|type=sidebar|help=off|bigbox={{#invoke:Noinclude|noinclude|text=yes}}}}
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|adjective = Swazi
|history =
<section begin=History />
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II|World War II]]
* [[2021–2023 Eswatini protests|2021–2023 protests]]
<section end=History />
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[Ngwenyama]]
* [[Ndlovukati]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
** [[Umbutfo Eswatini Defence Force#Commanders|Commander]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Abortion in Eswatini|Abortion]]
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
9llpsqz9ikgydbzygj78wwo8pxkl7yt
670398
670397
2025-12-17T05:27:40Z
WhisperToMe
595
670398
wikitext
text/x-wiki
{{Tfm/dated|page=Culture of Eswatini|otherpage=Eswatini topics|link=Wikipedia:Templates for discussion/Log/2025 November 5#Culture sidebars part 9|type=sidebar|help=off|bigbox={{#invoke:Noinclude|noinclude|text=yes}}}}
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|adjective = Swazi
|history =
<section begin=History />
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II|World War II]]
* [[2021–2023 Eswatini protests|2021–2023 protests]]
<section end=History />
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[King of Eswatini]] (Ngwenyama)
* [[Ndlovukati]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
** [[Umbutfo Eswatini Defence Force#Commanders|Commander]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Abortion in Eswatini|Abortion]]
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
pe3yw07fowyd3riocvzgvzr8ws6pjn6
670399
670398
2025-12-18T15:59:32Z
Zackmann08
14653
fixing infobox/removing [[:Category:Pages using country topics with unknown parameters |Unknown parameters]]
670399
wikitext
text/x-wiki
{{Tfm/dated|page=Culture of Eswatini|otherpage=Eswatini topics|link=Wikipedia:Templates for discussion/Log/2025 November 5#Culture sidebars part 9|type=sidebar|help=off|bigbox={{#invoke:Noinclude|noinclude|text=yes}}}}
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|history =
<section begin=History />
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II|World War II]]
* [[2021–2023 Eswatini protests|2021–2023 protests]]
<section end=History />
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[King of Eswatini]] (Ngwenyama)
* [[Ndlovukati]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
** [[Umbutfo Eswatini Defence Force#Commanders|Commander]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Abortion in Eswatini|Abortion]]
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{documentation|content=
{{collapsible option|default=collapsed}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
}}</noinclude>
k0o07rg6ojvy2wzjg7bl3toigafkxc6
670400
670399
2025-12-22T06:36:50Z
Zackmann08
14653
Merging missing links from [[Template:Culture of Eswatini]] per TFD
670400
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|history =
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II|World War II]]
* [[2021–2023 Eswatini protests|2021–2023 protests]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[King of Eswatini]] (Ngwenyama)
* [[Ndlovukati]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
** [[Umbutfo Eswatini Defence Force#Commanders|Commander]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Abortion in Eswatini|Abortion]]
* [[Nkulunkulu Mnikati wetibusiso temaSwati|Athem]]
* [[Coat of arms of Eswatini|Coat of arms]]
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{navbox doc}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
</noinclude>
765nwjx3o3ow4umyf8g8viidmweqxf5
670401
670400
2026-06-29T12:44:33Z
King ChristLike
13051
61 revisions imported from [[:en:Template:Eswatini_topics]]
670400
wikitext
text/x-wiki
{{Country topics
|template_name = Eswatini topics
|country = Eswatini
|state = {{{state<includeonly>|{{{1|collapsed}}}</includeonly>}}}
|history =
* [[List of monarchs of Eswatini|Monarchs]]
* [[Second Boer War]]
* [[Eswatini in World War II|World War II]]
* [[2021–2023 Eswatini protests|2021–2023 protests]]
|geography = <!--Alphabetical:-->
* [[List of cities in Eswatini|Cities and towns]]
* [[Geology of Eswatini|Geology]]
* [[Regions of Eswatini|Regions]]
* [[Wildlife of Eswatini|Wildlife]]
|politics = <!--Alphabetical:-->
* [[Cabinet of Eswatini|Cabinet]]
* [[Elections in Eswatini|Elections]]
* [[Foreign relations of Eswatini|Foreign relations]]
* [[Human rights in Eswatini|Human rights]]
** [[LGBT rights in Eswatini|LGBT rights]]
* [[King of Eswatini]] (Ngwenyama)
* [[Ndlovukati]]
* [[List of prime ministers of Eswatini|Prime Minister]]
* [[Umbutfo Eswatini Defence Force|Military]]
** [[Umbutfo Eswatini Defence Force#Commanders|Commander]]
* [[Law enforcement in Eswatini|Law enforcement]]
* [[Parliament of Eswatini|Parliament]]
** [[Senate of Eswatini|Senate]]
** [[House of Assembly of Eswatini|House of Assembly]]
* [[List of political parties in Eswatini|Political parties]]
|economy = <!--Alphabetical:-->
* [[Central Bank of Eswatini|Central Bank]]
* [[Child labour in Eswatini|Child labour]]
* [[List of companies of Eswatini|Companies]]
* [[Mining industry of Eswatini|Mining]]
* [[Prostitution in Eswatini|Prostitution]]
* [[Eswatini Stock Market|Stock Exchange]]
* [[Telecommunications in Eswatini|Telecommunications]]
* [[Transport in Eswatini|Transport]]
|society = <!--Alphabetical:-->
* [[Abortion in Eswatini|Abortion]]
* [[Nkulunkulu Mnikati wetibusiso temaSwati|Athem]]
* [[Coat of arms of Eswatini|Coat of arms]]
* [[Culture of Eswatini|Culture]]
* [[Demographics of Eswatini|Demographics]]
* [[Education in Eswatini|Education]]
* [[Flag of Eswatini|Flag]]
* [[Languages of Eswatini|Languages]]
* [[Music of Eswatini|Music]]
* [[Religion in Eswatini|Religion]]
|noportal=yes
}}<noinclude>
{{navbox doc}}
[[Category:Eswatini templates| ]]
[[Category:Africa country and territory topics templates]]
</noinclude>
765nwjx3o3ow4umyf8g8viidmweqxf5
Module:Location map/data/Republic of the Congo
828
77128
670404
2018-03-22T19:22:01Z
Frietjes
14509
created from [[Template:Location map Republic of the Congo]], edit history will be saved in [[Module talk:Location map/data/Republic of the Congo/doc]]
670404
Scribunto
text/plain
return {
name = 'Republic of the Congo',
top = 3.736,
bottom = -5.760,
left = 10.290,
right = 19.126,
image = 'Congo location map.svg',
image1 = 'Congo physical map.svg'
}
ad6wxpa0ybzwflakq0fwc4y15o9i7dl
670405
670404
2026-06-29T12:45:26Z
King ChristLike
13051
1 revision imported from [[:en:Module:Location_map/data/Republic_of_the_Congo]]
670404
Scribunto
text/plain
return {
name = 'Republic of the Congo',
top = 3.736,
bottom = -5.760,
left = 10.290,
right = 19.126,
image = 'Congo location map.svg',
image1 = 'Congo physical map.svg'
}
ad6wxpa0ybzwflakq0fwc4y15o9i7dl
Module:Location map/data/Republic of the Congo/doc
828
77129
670410
2013-02-09T00:53:53Z
Zyxw
14644
create documentation
670410
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- Categories and interwikis go at the bottom of this page. -->
[[File:Congo, Republic of the-CIA WFB Map.png|thumb|250px|Map of the Republic of the Congo]]
'''Template:Location map Republic of the Congo''' is a location map definition used to overlay markers and labels on an [[equirectangular projection]] map of the [[Republic of the Congo]]. The markers are placed by [[latitude]] and [[longitude]] coordinates on the default map or a similar map image.
== Usage ==
These definitions are used by the following templates when invoked with parameter "Republic of the Congo":
* {{tlx|Location map | Republic of the Congo | ...}}
* {{tlx|Location map many | Republic of the Congo | ...}}
* {{tlx|Location map+ | Republic of the Congo | ...}}
* {{tlx|Location map~ | Republic of the Congo | ...}}
== Map definition ==
* <tt>'''name''' = {{{{BASEPAGENAME}}|name}}</tt>
*: Name used in the default map caption
* <tt>'''image''' = [[:File:{{{{BASEPAGENAME}}|image}}|{{{{BASEPAGENAME}}|image}}]]</tt>
*: The default map image, without "Image:" or "File:"
{{#if:{{{{BASEPAGENAME}}|image1}}|
* <tt>'''image1''' = [[:File:{{{{BASEPAGENAME}}|image1}}|{{{{BASEPAGENAME}}|image1}}]]</tt>
*: An alternative map image, usually a relief map, can be displayed via the ''relief'' or ''AlternativeMap'' parameters
}}{{#if:{{{{BASEPAGENAME}}|image2}}|
* <tt>'''image2''' = [[:File:{{{{BASEPAGENAME}}|image2}}|{{{{BASEPAGENAME}}|image2}}]]</tt>
*: A second alternative map image, can be displayed via the ''AlternativeMap'' parameter only
}}{{#if:{{{{BASEPAGENAME}}|top}}{{{{BASEPAGENAME}}|bottom}}{{{{BASEPAGENAME}}|left}}{{{{BASEPAGENAME}}|right}}|
* <tt>'''top''' = {{{{BASEPAGENAME}}|top}}</tt>
*: [[Latitude]] at top edge of map, in [[decimal degrees]]
* <tt>'''bottom''' = {{{{BASEPAGENAME}}|bottom}}</tt>
*: Latitude at bottom edge of map, in decimal degrees
* <tt>'''left''' = {{{{BASEPAGENAME}}|left}}</tt>
*: [[Longitude]] at left edge of map, in decimal degrees
* <tt>'''right''' = {{{{BASEPAGENAME}}|right}}</tt>
*: Longitude at right edge of map, in decimal degrees
}}{{#if:{{{{BASEPAGENAME}}|x}}{{{{BASEPAGENAME}}|y}}|
* <tt>'''x''' = {{{{BASEPAGENAME}}|x}}</tt>
*: An expression to calculate a location on the map via its [[longitude]]; evaluates as 0 along the left edge and 100 along the right edge
* <tt>'''y''' = {{{{BASEPAGENAME}}|y}}</tt>
*: An expression to calculate a location on the map via its [[latitude]]; evaluates as 0 along the top edge and 100 along the bottom edge
}}
{{#if:{{{{BASEPAGENAME}}|image1}}|
== Alternative map ==
The map defined as '''image1''' (<tt>{{{{BASEPAGENAME}}|image1}}</tt>) can be displayed by using the ''relief'' or ''AlternativeMap'' parameters in {{tl|Location map}}, {{tl|Location map many}} and {{tl|Location map+}}. {{#if:{{{{BASEPAGENAME}}|image2}}| The map defined as '''image2''' (<tt>{{{{BASEPAGENAME}}|image2}}</tt>) can only be displayed by using the ''AlternativeMap'' parameter.}} The use of these two parameters is shown in the examples below. Additional examples can be found at:
{{{!}}
{{!}}
* [[Template:Location map#Relief parameter]]
* [[Template:Location map#AlternativeMap parameter]]
{{!}}
* [[Template:Location map+/relief]]
* [[Template:Location map+/AlternativeMap]]
{{!}}}
}}
== Examples using location map templates ==
=== Location map, using default map (image) ===
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
<pre style="width:30em">
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
</pre>
{{clear}}
=== Location map many, using relief map (image1) ===
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
<pre style="width:35em">
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
</pre>
{{clear}}
=== Location map+, using AlternativeMap ===
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
<pre style="width:35em">
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
</pre>
{{clear}}
== See also ==
; Location map templates
* [[Template:Location map]], to display one mark and label using latitude and longitude
* [[Template:Location map many]], to display up to nine marks and labels
* [[Template:Location map+]], to display an unlimited number of marks and labels
; Infobox templates incorporating (passing values to) the Location map template
{{Location map/doc/See also infobox templates}}
<includeonly>
<!-- Categories and interwikis go here: -->
</includeonly>
3q1p9quhmvbk62zvbtjtfd5yirog2p8
670411
670410
2018-03-22T19:41:07Z
Frietjes
14509
Frietjes moved page [[Template:Location map Republic of the Congo/doc]] to [[Module:Location map/data/Republic of the Congo/doc]]
670410
wikitext
text/x-wiki
{{Documentation subpage}}
<!-- Categories and interwikis go at the bottom of this page. -->
[[File:Congo, Republic of the-CIA WFB Map.png|thumb|250px|Map of the Republic of the Congo]]
'''Template:Location map Republic of the Congo''' is a location map definition used to overlay markers and labels on an [[equirectangular projection]] map of the [[Republic of the Congo]]. The markers are placed by [[latitude]] and [[longitude]] coordinates on the default map or a similar map image.
== Usage ==
These definitions are used by the following templates when invoked with parameter "Republic of the Congo":
* {{tlx|Location map | Republic of the Congo | ...}}
* {{tlx|Location map many | Republic of the Congo | ...}}
* {{tlx|Location map+ | Republic of the Congo | ...}}
* {{tlx|Location map~ | Republic of the Congo | ...}}
== Map definition ==
* <tt>'''name''' = {{{{BASEPAGENAME}}|name}}</tt>
*: Name used in the default map caption
* <tt>'''image''' = [[:File:{{{{BASEPAGENAME}}|image}}|{{{{BASEPAGENAME}}|image}}]]</tt>
*: The default map image, without "Image:" or "File:"
{{#if:{{{{BASEPAGENAME}}|image1}}|
* <tt>'''image1''' = [[:File:{{{{BASEPAGENAME}}|image1}}|{{{{BASEPAGENAME}}|image1}}]]</tt>
*: An alternative map image, usually a relief map, can be displayed via the ''relief'' or ''AlternativeMap'' parameters
}}{{#if:{{{{BASEPAGENAME}}|image2}}|
* <tt>'''image2''' = [[:File:{{{{BASEPAGENAME}}|image2}}|{{{{BASEPAGENAME}}|image2}}]]</tt>
*: A second alternative map image, can be displayed via the ''AlternativeMap'' parameter only
}}{{#if:{{{{BASEPAGENAME}}|top}}{{{{BASEPAGENAME}}|bottom}}{{{{BASEPAGENAME}}|left}}{{{{BASEPAGENAME}}|right}}|
* <tt>'''top''' = {{{{BASEPAGENAME}}|top}}</tt>
*: [[Latitude]] at top edge of map, in [[decimal degrees]]
* <tt>'''bottom''' = {{{{BASEPAGENAME}}|bottom}}</tt>
*: Latitude at bottom edge of map, in decimal degrees
* <tt>'''left''' = {{{{BASEPAGENAME}}|left}}</tt>
*: [[Longitude]] at left edge of map, in decimal degrees
* <tt>'''right''' = {{{{BASEPAGENAME}}|right}}</tt>
*: Longitude at right edge of map, in decimal degrees
}}{{#if:{{{{BASEPAGENAME}}|x}}{{{{BASEPAGENAME}}|y}}|
* <tt>'''x''' = {{{{BASEPAGENAME}}|x}}</tt>
*: An expression to calculate a location on the map via its [[longitude]]; evaluates as 0 along the left edge and 100 along the right edge
* <tt>'''y''' = {{{{BASEPAGENAME}}|y}}</tt>
*: An expression to calculate a location on the map via its [[latitude]]; evaluates as 0 along the top edge and 100 along the bottom edge
}}
{{#if:{{{{BASEPAGENAME}}|image1}}|
== Alternative map ==
The map defined as '''image1''' (<tt>{{{{BASEPAGENAME}}|image1}}</tt>) can be displayed by using the ''relief'' or ''AlternativeMap'' parameters in {{tl|Location map}}, {{tl|Location map many}} and {{tl|Location map+}}. {{#if:{{{{BASEPAGENAME}}|image2}}| The map defined as '''image2''' (<tt>{{{{BASEPAGENAME}}|image2}}</tt>) can only be displayed by using the ''AlternativeMap'' parameter.}} The use of these two parameters is shown in the examples below. Additional examples can be found at:
{{{!}}
{{!}}
* [[Template:Location map#Relief parameter]]
* [[Template:Location map#AlternativeMap parameter]]
{{!}}
* [[Template:Location map+/relief]]
* [[Template:Location map+/AlternativeMap]]
{{!}}}
}}
== Examples using location map templates ==
=== Location map, using default map (image) ===
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
<pre style="width:30em">
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
</pre>
{{clear}}
=== Location map many, using relief map (image1) ===
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
<pre style="width:35em">
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
</pre>
{{clear}}
=== Location map+, using AlternativeMap ===
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
<pre style="width:35em">
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
</pre>
{{clear}}
== See also ==
; Location map templates
* [[Template:Location map]], to display one mark and label using latitude and longitude
* [[Template:Location map many]], to display up to nine marks and labels
* [[Template:Location map+]], to display an unlimited number of marks and labels
; Infobox templates incorporating (passing values to) the Location map template
{{Location map/doc/See also infobox templates}}
<includeonly>
<!-- Categories and interwikis go here: -->
</includeonly>
3q1p9quhmvbk62zvbtjtfd5yirog2p8
670412
670411
2018-03-22T20:07:14Z
Frietjes
14509
670412
wikitext
text/x-wiki
<!-- Place categories where indicated at the bottom of this page; interwikis at Wikidata -->
{{Module:Location map/data/doc
|image=[[File:Congo, Republic of the-CIA WFB Map.png|thumb|250px|Map of the Republic of the Congo]]
|examples=
=== Location map, using default map (image) ===
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
<pre style="width:30em">
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
</pre>
{{clear}}
=== Location map many, using relief map (image1) ===
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
<pre style="width:35em">
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
</pre>
{{clear}}
=== Location map+, using AlternativeMap ===
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
<pre style="width:35em">
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
</pre>
| see also =
}}<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox||
<!-- Categories below this line; interwikis at Wikidata -->
[[Category:Location map by country templates|Republic of the Congo]]
}}</includeonly>
1g2tv6swqxwqb4348i7yonhr7w2ic4j
670413
670412
2018-12-07T11:09:45Z
Timrollpickering
14530
/* Location map+, using AlternativeMap */per [[Wikipedia:Categories for discussion/Log/2018 November 27]], replaced: Location map by country templates → Country location map templates
670413
wikitext
text/x-wiki
<!-- Place categories where indicated at the bottom of this page; interwikis at Wikidata -->
{{Module:Location map/data/doc
|image=[[File:Congo, Republic of the-CIA WFB Map.png|thumb|250px|Map of the Republic of the Congo]]
|examples=
=== Location map, using default map (image) ===
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
<pre style="width:30em">
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
</pre>
{{clear}}
=== Location map many, using relief map (image1) ===
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
<pre style="width:35em">
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
</pre>
{{clear}}
=== Location map+, using AlternativeMap ===
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
<pre style="width:35em">
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
</pre>
| see also =
}}<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox||
<!-- Categories below this line; interwikis at Wikidata -->
[[Category:Country location map templates|Republic of the Congo]]
}}</includeonly>
berwj49eazu9jaaxi8hffca4gw3mwwu
670414
670413
2019-10-30T23:55:44Z
Spiderjerky
46901
670414
wikitext
text/x-wiki
<!-- Place categories where indicated at the bottom of this page; interwikis at Wikidata -->
{{Module:Location map/data/doc
|image=[[File:Congo, Republic of the-CIA WFB Map.png|thumb|250px|Map of the Republic of the Congo]]
|examples=
=== Location map, using default map (image) ===
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
<pre style="width:30em">
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
</pre>
{{clear}}
=== Location map many, using relief map (image1) ===
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
<pre style="width:35em">
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
</pre>
{{clear}}
=== Location map+, using AlternativeMap ===
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
<pre style="width:35em">
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
</pre>
| see also =
}}<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox||
<!-- Categories below this line; interwikis at Wikidata -->
[[Category:Location map templates by country|Republic of the Congo]]
}}</includeonly>
mynyioa2v2h5c4zm0s80f8hnng9hhuo
670415
670414
2022-02-11T07:20:51Z
JJMC89 bot III
27027
Moving [[:Category:Location map templates by country]] to [[:Category:Location map modules by country]] per [[Wikipedia:Categories for discussion/Speedy]]
670415
wikitext
text/x-wiki
<!-- Place categories where indicated at the bottom of this page; interwikis at Wikidata -->
{{Module:Location map/data/doc
|image=[[File:Congo, Republic of the-CIA WFB Map.png|thumb|250px|Map of the Republic of the Congo]]
|examples=
=== Location map, using default map (image) ===
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
<pre style="width:30em">
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
</pre>
{{clear}}
=== Location map many, using relief map (image1) ===
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
<pre style="width:35em">
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
</pre>
{{clear}}
=== Location map+, using AlternativeMap ===
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
<pre style="width:35em">
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
</pre>
| see also =
}}<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox||
<!-- Categories below this line; interwikis at Wikidata -->
[[Category:Location map modules by country|Republic of the Congo]]
}}</includeonly>
t1vrwl3cvw5cal5fyzaf95sz9ihiiq4
670416
670415
2022-06-01T05:36:56Z
Dmm1169
63989
added category
670416
wikitext
text/x-wiki
<!-- Place categories where indicated at the bottom of this page; interwikis at Wikidata -->
{{Module:Location map/data/doc
|image=[[File:Congo, Republic of the-CIA WFB Map.png|thumb|250px|Map of the Republic of the Congo]]
|examples=
=== Location map, using default map (image) ===
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
<pre style="width:30em">
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
</pre>
{{clear}}
=== Location map many, using relief map (image1) ===
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
<pre style="width:35em">
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
</pre>
{{clear}}
=== Location map+, using AlternativeMap ===
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
<pre style="width:35em">
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
</pre>
| see also =
}}<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox||
<!-- Categories below this line; interwikis at Wikidata -->
[[Category:Africa location map modules|Republic of the Congo]]
[[Category:Location map modules by country|Republic of the Congo]]
}}</includeonly>
ojhymc0r3ochduyxlbs9pg1vc573ue0
670417
670416
2022-06-01T14:47:03Z
Dmm1169
63989
More specific category
670417
wikitext
text/x-wiki
<!-- Place categories where indicated at the bottom of this page; interwikis at Wikidata -->
{{Module:Location map/data/doc
|image=[[File:Congo, Republic of the-CIA WFB Map.png|thumb|250px|Map of the Republic of the Congo]]
|examples=
=== Location map, using default map (image) ===
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
<pre style="width:30em">
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
</pre>
{{clear}}
=== Location map many, using relief map (image1) ===
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
<pre style="width:35em">
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
</pre>
{{clear}}
=== Location map+, using AlternativeMap ===
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
<pre style="width:35em">
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
</pre>
| see also =
}}<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox||
<!-- Categories below this line; interwikis at Wikidata -->
[[Category:Africa location map modules by country|Republic of the Congo]]
[[Category:Location map modules by country|Republic of the Congo]]
}}</includeonly>
l6g8bg4l9pi3tgmlfqaow3ndj9bwb59
670418
670417
2026-06-29T12:45:33Z
King ChristLike
13051
8 revisions imported from [[:en:Module:Location_map/data/Republic_of_the_Congo/doc]]
670417
wikitext
text/x-wiki
<!-- Place categories where indicated at the bottom of this page; interwikis at Wikidata -->
{{Module:Location map/data/doc
|image=[[File:Congo, Republic of the-CIA WFB Map.png|thumb|250px|Map of the Republic of the Congo]]
|examples=
=== Location map, using default map (image) ===
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
<pre style="width:30em">
{{Location map | Republic of the Congo
| width = 250
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
</pre>
{{clear}}
=== Location map many, using relief map (image1) ===
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
<pre style="width:35em">
{{Location map many | Republic of the Congo
| relief = yes
| width = 250
| caption = Locations in the Republic of the Congo
| lat1_deg = -4.27
| lon1_deg = 15.29
| label1 = Brazzaville
| lat2_deg = 1.63
| lon2_deg = 18.07
| label2 = Impfondo
}}
</pre>
{{clear}}
=== Location map+, using AlternativeMap ===
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
<pre style="width:35em">
{{Location map+ | Republic of the Congo
| AlternativeMap = Congo physical map.svg
| width = 250
| caption = Locations in the Republic of the Congo
| places =
{{Location map~ | Republic of the Congo
| lat_deg = -4.27
| lon_deg = 15.29
| label = Brazzaville
}}
{{Location map~ | Republic of the Congo
| lat_deg = 1.63
| lon_deg = 18.07
| label = Impfondo
}}
}}
</pre>
| see also =
}}<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox||
<!-- Categories below this line; interwikis at Wikidata -->
[[Category:Africa location map modules by country|Republic of the Congo]]
[[Category:Location map modules by country|Republic of the Congo]]
}}</includeonly>
l6g8bg4l9pi3tgmlfqaow3ndj9bwb59
Osimiri Ibenga
0
77130
670419
2026-06-29T13:08:19Z
Adimora chidinma
15845
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1252299174|Ibenga River]]"
670419
wikitext
text/x-wiki
{| class="infobox"
! colspan="2" class="infobox-above" style="background-color: #CEDEFF;color: #202122;" |Osimiri Ibenga
|-
| colspan="2" class="infobox-image" |[[File:Un-congo-brazzaville.png|314x314px]]<div class="infobox-caption">Osimiri nke Republic of the Congo. Ibenga n'ebe ugwu.</div>
|-
| colspan="2" class="infobox-image" |<templatestyles src="Module:Location map/styles.css"></templatestyles><div class="center"><div class="locmap" style="width:250px;float:none;clear:both;margin-left:auto;margin-right:auto"><div style="width:250px;padding:0"><div style="position:relative;width:250px">[[Faịlụ:Congo_physical_map.svg|class=notpageimage noviewer|269x269px|Ibenga River is located in Republic of the Congo]]<div class="od notheme" style="top:15.307%;left:88.387%;font-size:91%"><div class="id" style="left:-4px;top:-4px">[[Faịlụ:Red_pog.svg|link=|class=notpageimage noviewer|8x8px|Ibenga River]]</div></div></div><div style="padding-top:0.2em"></div></div></div></div>
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Ebe
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Mba
| class="infobox-data" |Republic nke Congo
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Mpaghara
| class="infobox-data" |Dongou
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Àgwà ya
|-
! class="infobox-label" scope="row" |Ọnụ
| class="infobox-data" |Osimiri Ubangi
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• akara </div>
| class="infobox-data" |<templatestyles src="Module:Coordinates/styles.css"></templatestyles><span class="geo-inline"><span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Ibenga_River¶ms=2.282423_N_18.099886_E_type:river <span class="geo-nondefault"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">2°16′57′′N</span> <span class="longitude">18°06′00′′E</span></span></span><span class="geo-multi-punct">/__ibo____ibo____ibo__ Ọ bụ ezie na ọ bụ</span><span class="geo-default"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">2.282423°N 18.099886°E</span><span style="display:none"> / <span class="geo">2.282423; 18.099886</span></span></span>]</span></span><indicator name="coordinates"><span id="coordinates">[[Geographic coordinate system|Coordinates]]: {{#parsoid�fragment:4}}<span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Ibenga_River¶ms=2.282423_N_18.099886_E_type:river <span class="geo-nondefault"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">2°16′57″N</span> <span class="longitude">18°06′00″E</span></span></span><span class="geo-multi-punct"> / </span><span class="geo-default"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">2.282423°N 18.099886°E</span><span style="display:none"> / <span class="geo">2.282423; 18.099886</span></span></span>]</span>[[Category:Pages using gadget WikiMiniAtlas]]</span></indicator>
|}
''''''Osimiri Libenga'''''' (French: Rivière Ibenga ma ọ bụ ) bụ osimiri nke Republic of the Congo, nke dị n'aka nri nke Osimiri Ubangi .
== Ebe ==
Osimiri ahụ na-arịgo n'ebe ugwu ọdịda anyanwụ Enyelle. Ọ na-agafe obodo ahụ, mgbe ahụ na-agagharị na ntụziaka SSE n'ozuzu ya gaa Ubangi.[1] Osimiri ahụ dị kilomita 325 (202 mi) n'ogologo. Ọ dị mkpa dị ka ụzọ njem mpaghara. Ọrụ akụ na ụba ndị bụ isi n'akụkụ osimiri ahụ bụ ịkụ azụ na mmepụta mmanya nkwụ.[2]
== Akụkọ ihe mere eme ==
Onye Yuropu mbụ ga-enyocha osimiri ahụ bụ Alphonse van Gèle, na Nọvemba ruo Disemba 1886. [3]
== Ebe Ramsar ==
Ebe Libenga Ramsar dị n'ogologo Osimiri Libenga ma gụnye ala mmiri dị n'akụkụ abụọ nke osimiri ahụ, obere iyi, ala idei mmiri, na oke ọhịa apịtị. Ruo afọ 2000, enweghị atụmatụ njikwa gọọmentị, mana e nyere ụfọdụ nchebe site na oge ịchụ nta na mmegbu n'ebe ụfọdụ ebe naanị ndị bi n'ebo bi na ya. Osimiri ahụ na-eje ozi dị ka ebe mgbaba maka hippopotamus iji gbanahụ ihe iyi egwu ha na-eche ihu na Ubangi. E nwere ọtụtụ ụdị azụ̀ ndị a na-ahụkarị na ndị na-akwaga ebe ọzọ. Gọọmentị malitere mmemme iji gbochie ụdị mmiri ndị na-awakpo na 1998. Ụkwara mmiri marabou na pelicans na-akwaga ebe ọzọ na-eji ahịhịa gburugburu osimiri ahụ, dịka buffaloes na-akwaga ebe ọzọ na-eme.[2]
== Ihe edeturu ==
== Ebe e si nweta ya ==
[[Otú:Short description is different from Wikidata]]
[[Otú:Articles with short description]]
sd4p6vytn2tcrhsw02wusghvdsg19k1
670420
670419
2026-06-29T13:11:27Z
Adimora chidinma
15845
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1252299174|Ibenga River]]"
670420
wikitext
text/x-wiki
{| class="infobox"
! colspan="2" class="infobox-above" style="background-color: #CEDEFF;color: #202122;" |Osimiri Ibenga
|-
| colspan="2" class="infobox-image" |[[File:Un-congo-brazzaville.png|314x314px]]<div class="infobox-caption">Osimiri nke Republic of the Congo. Ibenga n'ebe ugwu.</div>
|-
| colspan="2" class="infobox-image" |<templatestyles src="Module:Location map/styles.css"></templatestyles><div class="center"><div class="locmap" style="width:250px;float:none;clear:both;margin-left:auto;margin-right:auto"><div style="width:250px;padding:0"><div style="position:relative;width:250px">[[Faịlụ:Congo_physical_map.svg|class=notpageimage noviewer|269x269px|Ibenga River is located in Republic of the Congo]]<div class="od notheme" style="top:15.307%;left:88.387%;font-size:91%"><div class="id" style="left:-4px;top:-4px">[[Faịlụ:Red_pog.svg|link=|class=notpageimage noviewer|8x8px|Ibenga River]]</div></div></div><div style="padding-top:0.2em"></div></div></div></div>
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Ebe
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Mba
| class="infobox-data" |Republic nke Congo
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Mpaghara
| class="infobox-data" |Dongou
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Àgwà ya
|-
! class="infobox-label" scope="row" |Ọnụ
| class="infobox-data" |Osimiri Ubangi
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• akara </div>
| class="infobox-data" |<templatestyles src="Module:Coordinates/styles.css"></templatestyles><span class="geo-inline"><span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Ibenga_River¶ms=2.282423_N_18.099886_E_type:river <span class="geo-nondefault"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">2°16′57′′N</span> <span class="longitude">18°06′00′′E</span></span></span><span class="geo-multi-punct">/__ibo____ibo____ibo__ Ọ bụ ezie na ọ bụ</span><span class="geo-default"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">2.282423°N 18.099886°E</span><span style="display:none"> / <span class="geo">2.282423; 18.099886</span></span></span>]</span></span><indicator name="coordinates"><span id="coordinates">[[Geographic coordinate system|Coordinates]]: {{#parsoid�fragment:4}}<span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Ibenga_River¶ms=2.282423_N_18.099886_E_type:river <span class="geo-nondefault"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">2°16′57″N</span> <span class="longitude">18°06′00″E</span></span></span><span class="geo-multi-punct"> / </span><span class="geo-default"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">2.282423°N 18.099886°E</span><span style="display:none"> / <span class="geo">2.282423; 18.099886</span></span></span>]</span>[[Category:Pages using gadget WikiMiniAtlas]]</span></indicator>
|}
''''''Osimiri Libenga'''''' (French: Rivière Ibenga ma ọ bụ ) bụ osimiri nke Republic of the Congo, nke dị n'aka nri nke Osimiri Ubangi .
== Ebe ==
Osimiri ahụ na-arịgo n'ebe ugwu ọdịda anyanwụ Enyelle. Ọ na-agafe obodo ahụ, mgbe ahụ na-agagharị na ntụziaka SSE n'ozuzu ya gaa Ubangi.[1] Osimiri ahụ dị kilomita 325 (202 mi) n'ogologo. Ọ dị mkpa dị ka ụzọ njem mpaghara. Ọrụ akụ na ụba ndị bụ isi n'akụkụ osimiri ahụ bụ ịkụ azụ na mmepụta mmanya nkwụ.[2]
== Akụkọ ihe mere eme ==
Onye Europe mbụ nyochara osimiri ahụ bụ Alphonse van Gèle, na Nọvemba-Disemba 1886. [3]
== Ebe Ramsar ==
Ebe Libenga Ramsar dị n'ogologo Osimiri Libenga ma gụnye ala mmiri dị n'akụkụ abụọ nke osimiri ahụ, obere iyi, ala idei mmiri, na oke ọhịa apịtị. Ruo afọ 2000, enweghị atụmatụ njikwa gọọmentị, mana e nyere ụfọdụ nchebe site na oge ịchụ nta na mmegbu n'ebe ụfọdụ ebe naanị ndị bi n'ebo bi na ya. Osimiri ahụ na-eje ozi dị ka ebe mgbaba maka hippopotamus iji gbanahụ ihe iyi egwu ha na-eche ihu na Ubangi. E nwere ọtụtụ ụdị azụ̀ ndị a na-ahụkarị na ndị na-akwaga ebe ọzọ. Gọọmentị malitere mmemme iji gbochie ụdị mmiri ndị na-awakpo na 1998. Ụkwara mmiri marabou na pelicans na-akwaga ebe ọzọ na-eji ahịhịa gburugburu osimiri ahụ, dịka buffaloes na-akwaga ebe ọzọ na-eme.[2]
== Ihe edeturu ==
<templatestyles src="Reflist/styles.css" />{{Reflist|30em}}
== Ebe e si nweta ya ==
[[Otú:Short description is different from Wikidata]]
[[Otú:Articles with short description]]
r8oeh17blfn11yjsf6ozt67krgl05z1
670421
670420
2026-06-29T13:20:05Z
Adimora chidinma
15845
670421
wikitext
text/x-wiki
{| class="infobox"
! colspan="2" class="infobox-above" style="background-color: #CEDEFF;color: #202122;" |Osimiri Ibenga
|-
| colspan="2" class="infobox-image" |[[File:Un-congo-brazzaville.png|314x314px]]<div class="infobox-caption">Osimiri nke Republic of the Congo. Ibenga n'ebe ugwu.</div>
|-
| colspan="2" class="infobox-image" |<templatestyles src="Module:Location map/styles.css"></templatestyles><div class="center"><div class="locmap" style="width:250px;float:none;clear:both;margin-left:auto;margin-right:auto"><div style="width:250px;padding:0"><div style="position:relative;width:250px">[[Faịlụ:Congo_physical_map.svg|class=notpageimage noviewer|269x269px|Ibenga River is located in Republic of the Congo]]<div class="od notheme" style="top:15.307%;left:88.387%;font-size:91%"><div class="id" style="left:-4px;top:-4px">[[Faịlụ:Red_pog.svg|link=|class=notpageimage noviewer|8x8px|Ibenga River]]</div></div></div><div style="padding-top:0.2em"></div></div></div></div>
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Ebe
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Mba
| class="infobox-data" |Republic nke Congo
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Mpaghara
| class="infobox-data" |Dongou
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Àgwà ya
|-
! class="infobox-label" scope="row" |Ọnụ
| class="infobox-data" |Osimiri Ubangi
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• akara </div>
| class="infobox-data" |<templatestyles src="Module:Coordinates/styles.css"></templatestyles><span class="geo-inline"><span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Ibenga_River¶ms=2.282423_N_18.099886_E_type:river <span class="geo-nondefault"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">2°16′57′′N</span> <span class="longitude">18°06′00′′E</span></span></span><span class="geo-multi-punct">/__ibo____ibo____ibo__ Ọ bụ ezie na ọ bụ</span><span class="geo-default"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">2.282423°N 18.099886°E</span><span style="display:none"> / <span class="geo">2.282423; 18.099886</span></span></span>]</span></span><indicator name="coordinates"><span id="coordinates">[[Geographic coordinate system|Coordinates]]: {{#parsoid�fragment:4}}<span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Ibenga_River¶ms=2.282423_N_18.099886_E_type:river <span class="geo-nondefault"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">2°16′57″N</span> <span class="longitude">18°06′00″E</span></span></span><span class="geo-multi-punct"> / </span><span class="geo-default"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">2.282423°N 18.099886°E</span><span style="display:none"> / <span class="geo">2.282423; 18.099886</span></span></span>]</span>[[Category:Pages using gadget WikiMiniAtlas]]</span></indicator>
|}
''''''Osimiri Libenga'''''' (French: Rivière Ibenga ma ọ bụ ) bụ osimiri nke Republic of the Congo, nke dị n'aka nri nke Osimiri Ubangi .
== Ebe ==
Osimiri ahụ na-arịgo n'ebe ugwu ọdịda anyanwụ Enyelle. Ọ na-agafe obodo ahụ, mgbe ahụ na-agagharị na ntụziaka SSE n'ozuzu ya gaa Ubangi.{{sfn|Way: Ibenga (246788958)}} Osimiri ahụ dị kilomita 325 (202 mi) n'ogologo. Ọ dị mkpa dị ka ụzọ njem mpaghara. Ọrụ akụ na ụba ndị bụ isi n'akụkụ osimiri ahụ bụ ịkụ azụ na mmepụta mmanya nkwụ.{{sfn|Libenga – Ramsar}}
== Akụkọ ihe mere eme ==
Onye Europe mbụ nyochara osimiri ahụ bụ Alphonse van Gèle, na Nọvemba-Disemba 1886.{{sfn|Janssens|Cateaux|1908|p=172}}
== Ebe Ramsar ==
Ebe Libenga Ramsar dị n'ogologo Osimiri Libenga ma gụnye ala mmiri dị n'akụkụ abụọ nke osimiri ahụ, obere iyi, ala idei mmiri, na oke ọhịa apịtị. Ruo afọ 2000, enweghị atụmatụ njikwa gọọmentị, mana e nyere ụfọdụ nchebe site na oge ịchụ nta na mmegbu n'ebe ụfọdụ ebe naanị ndị bi n'ebo bi na ya. Osimiri ahụ na-eje ozi dị ka ebe mgbaba maka hippopotamus iji gbanahụ ihe iyi egwu ha na-eche ihu na Ubangi. E nwere ọtụtụ ụdị azụ̀ ndị a na-ahụkarị na ndị na-akwaga ebe ọzọ. Gọọmentị malitere mmemme iji gbochie ụdị mmiri ndị na-awakpo na 1998. Ụkwara mmiri marabou na pelicans na-akwaga ebe ọzọ na-eji ahịhịa gburugburu osimiri ahụ, dịka buffaloes na-akwaga ebe ọzọ na-eme.{{sfn|Libenga – Ramsar}}
== Ihe edeturu ==
<templatestyles src="Reflist/styles.css" />{{Reflist|30em}}
== Ebe e si nweta ya ==
[[Otú:Short description is different from Wikidata]]
[[Otú:Articles with short description]]
a6ocwl4inlzgbbj1mtztfrqdra5eles
Osimiri Logone
0
77131
670422
2026-06-29T13:31:56Z
Adimora chidinma
15845
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1318504314|Logone River]]"
670422
wikitext
text/x-wiki
{| class="infobox"
! colspan="2" class="infobox-above" style="background-color: #CEDEFF;color: #202122;" |Osimiri Logone
|-
| colspan="2" class="infobox-image" |[[File:The_Logon-Birni_-_general_view.jpg|frameless]]<div class="infobox-caption">Logone-Birni, site n'akwụkwọ The earth and its inhabitants, Africa 1892</div>
|-
| colspan="2" class="infobox-image" |[[File:Charirivermap.png|250x250px]]<div class="infobox-caption">Map na-egosi Osimiri Logone n'ime ọdọ mmiri nke Osimiri Chari</div>
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Ebe
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Mba
| class="infobox-data" |<templatestyles src="Hlist/styles.css"></templatestyles><div class="hlist">
* [[Chad]]
* [[Kameroon|Cameroon]]
</div>
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Obodo
| class="infobox-data" |Kousséri
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Àgwà ya
|- class="infobox-hiddenrow" style="display:none;"
| colspan="2" class="infobox-full-data" |<templatestyles src="Module:Infobox/styles.css"></templatestyles>
|-
! class="infobox-label" scope="row" |Ebe e si nweta ya
| class="infobox-data" |
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<span style="font-weight:normal">• ebe </span>
| class="infobox-data" |[[Central African Republic]]
|-
! class="infobox-label" scope="row" |Ọnụ
| class="infobox-data" |
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• ebe </div>
| class="infobox-data" |Osimiri Chari na N'Djaména, [[Chad]]
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• akara </div>
| class="infobox-data" |<templatestyles src="Module:Coordinates/styles.css"></templatestyles><span class="geo-inline"><span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Logone_River¶ms=12_6_22_N_15_2_7_E_type:river <span class="geo-default"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">12°6′22′′N</span> <span class="longitude">15°2′7′′E</span></span></span><span class="geo-multi-punct">/__ibo____ibo____ibo__ Ọ bụ ezie na ọ bụ</span><span class="geo-nondefault"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">12.10611°N 15.03528°E</span><span style="display:none"> / <span class="geo">12.10611; 15.03528</span></span></span>]</span></span><indicator name="coordinates"><span id="coordinates">[[Geographic coordinate system|Coordinates]]: {{#parsoid�fragment:10}}<span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Logone_River¶ms=12_6_22_N_15_2_7_E_type:river <span class="geo-default"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">12°6′22″N</span> <span class="longitude">15°2′7″E</span></span></span><span class="geo-multi-punct"> / </span><span class="geo-nondefault"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">12.10611°N 15.03528°E</span><span style="display:none"> / <span class="geo">12.10611; 15.03528</span></span></span>]</span>[[Category:Pages using gadget WikiMiniAtlas]]</span></indicator>
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• ịdị elu </div>
| class="infobox-data" |364 m (1,194 ft)
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Ogologo
| class="infobox-data" |1,000 kilomita (620 mi)
|-
! class="infobox-label" scope="row" |<div style="display: inline-block; line-height: 1.2em; padding: .1em 0; ">Ogologo ọdọ mmiri</div>
| class="infobox-data" |78,000 km<sup>2</sup> (30,000 sq mi)
|- class="infobox-hiddenrow" style="display:none;"
| colspan="2" class="infobox-full-data" |<templatestyles src="Module:Infobox/styles.css"></templatestyles>
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Ịchụpụ
| class="infobox-data" |
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<span style="font-weight:normal">• nkezi </span>
| class="infobox-data" |492 m<sup>3</sup>/s (17,400 cu ft/s)
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Ihe ndị dị n'ime ala
|-
! class="infobox-label" scope="row" |Ọnọdụ nchebe
| class="infobox-data" |<templatestyles src="Module:Infobox/styles.css"></templatestyles>
|- class="mergedrow"
! colspan="2" class="infobox-header" |<templatestyles src="Module:Infobox/styles.css"></templatestyles><div style="line-height:1.5;text-align:center;border-style:solid;border-width:4px;border-color:#8DE3D2">Ala Mmiri Ramsar</div>
|- class="mergedrow"
! class="infobox-label" scope="row" |<div style="display: inline-block; line-height: 1.2em; padding: .1em 0; ">Aha gọọmentị</div>
| class="infobox-data" |Ala dị larịị nke Logone na ndagwurugwu Toupouri
|- class="mergedrow"
! class="infobox-label" scope="row" |Ndị a họpụtara
| class="infobox-data" |14 Nọvemba 2005
|- class="mergedrow"
! class="infobox-label" scope="row" |Ihe odide no.
| class="infobox-data" |1560
|}
Osimiri '''Logon''' ma ọ bụ Logone ụtụ isi mmiri nke Osimiri Chari. Isi iyi Logone dị n'ebe ọdịda anyanwụ [[Central African Republic]], n'ebe ugwu [[Kameroon|Cameroon]], na n'ebe ndịda [[Chad]]. O nwere isi mmiri abụọ: Osimiri Pendé (Eastern Logone) na prefecture Ouham-Pendé na Central African Republic na Osimiri Mbéré (Western Logone). <ref>{{Cite news|url=https://www.britannica.com/place/Logone-River|title=Logone River {{!}} river, Africa|work=Encyclopedia Britannica|accessdate=2017-06-06|language=en}}</ref> Ọtụtụ ala mmiri na ala mmiri gbara osimiri ahụ gburugburu.
Ebe obibi dị n'osimiri ahụ gụnyere Kousseri, obodo kachasị n'ebe ugwu [[Kameroon|Cameroon]], na isi obodo Chad, N'Djaména, nke dị na ebe Logone na-abanye n'Osimiri Chari.
Logone bụ akụkụ nke ókèala mba ụwa dị n'etiti Chad na Cameroon.
== Hydrometry ==
A hụla nke osimiri ahụ ihe karịrị afọ (1951-84) na Bongor, obodo dị na Chad n'okpuru mmiri nke njikọ ya na Pendé ihe dị ka 450 (280 mi) n'elu ọnụ ya n'ime Chari. N'oge a, Bongor hụrụ na mmiri na-asọ asọ kwa afọ ruru 492 m3/s (17,400 cu ft/s) nke mpaghara dị ihe dị ka 73,700 km2 (28,500 sq mi) na-enye ihe dị ka 94.5% nke mpaghara mmiri niile dị na Osimiri ahụ. N'ihi na mmiri na-asọ asọ siri ike, oke mmiri na-asọba n'ime osimiri ahụ na-ebelata. Na N'Djamena, mmiri na-asọ asọ na-ebelata ruo 400 m3/s (14,000 cu ft/s).{{Center|'''The average monthly flow of the river Logone at hydrological station of Bongor (in m<sup>3</sup> / s )'''<br/> (Calculated using the data for a period of 38 years, 1948–86)
<timeline>
Colors=
id:lightgrey value:gray(0.8)
id:darkgrey value:gray(0.3)
id:sfondo value:rgb(1,1,1)
id:barra value:rgb(0.6,0.8,0.9)
ImageSize = width:600 height:280
PlotArea = left:40 bottom:40 top:20 right:20
DateFormat = x.y
Period = from:0 till:1800
TimeAxis = orientation:vertical
AlignBars = justify
ScaleMajor = gridcolor:lightgrey increment:200 start:0
ScaleMinor = gridcolor:lightgrey increment:100 start:0
BackgroundColors = canvas:sfondo
BarData=
bar:Jan text:January
bar:Fév text:February
bar:Mar text:Marz
bar:Avr text:April
bar:Mai text:May
bar:Jun text:June
bar:Jul text:July
bar:Aoû text:August
bar:Sep text:Sept.
bar:Oct text:Oct.
bar:Nov text:Nov.
bar:Déc text:Dec.
PlotData=
color:barra width:30 align:left
bar:Jan from:0 till: 117
bar:Fév from:0 till: 76
bar:Mar from:0 till: 50
bar:Avr from:0 till: 51
bar:Mai from:0 till: 78
bar:Jun from:0 till: 125
bar:Jul from:0 till: 432
bar:Aoû from:0 till: 1045
bar:Sep from:0 till: 1636
bar:Oct from:0 till: 1506
bar:Nov from:0 till: 583
bar:Déc from:0 till: 202
PlotData=
bar:Jan at: 117 fontsize:S text: 117 shift:(-10,5)
bar:Fév at: 76 fontsize:S text: 76 shift:(-10,5)
bar:Mar at: 50 fontsize:S text: 50 shift:(-10,5)
bar:Avr at: 51 fontsize:S text: 51 shift:(-10,5)
bar:Mai at: 78 fontsize:S text: 78 shift:(-10,5)
bar:Jun at: 125 fontsize:S text: 125 shift:(-10,5)
bar:Jul at: 432 fontsize:S text: 432 shift:(-10,5)
bar:Aoû at: 1045 fontsize:S text: 1.045 shift:(-10,5)
bar:Sep at: 1636 fontsize:S text: 1.636 shift:(-10,5)
bar:Oct at: 1506 fontsize:S text: 1.506 shift:(-10,5)
bar:Nov at: 583 fontsize:S text: 583 shift:(-10,5)
bar:Déc at: 202 fontsize:S text: 202 shift:(-10,5)
</timeline>}}
== Ọnụ ọgụgụ ndị bi na ya ==
N'ebe ọwụwa anyanwụ nke ndagwurugwu Logone dị ala, e guzobere site na ndị Kotoko ọtụtụ sultanates akụkọ ihe mere eme (Kousseri, Logone-Birni, Makari-Goulfey na ndị ọzọ) bụ ndị vassals nke Bornu ma ọ bụ Baguirmi n'ime ókèala Cameroon nke oge a.
== Akụkọ ihe mere eme ==
Na Chad, mpaghara nchịkwa akpọrọ Logone Oriental na Logone Occidental aha osimiri ahụ. Ober-Logone bụ mpaghara nchịkwa nke mba German nke Cameroon .
[[Faịlụ:Le_fleuve_logone.jpg|thumb|Osimiri Logone, Cameroon]]
[[Faịlụ:Transport_en_pirogue1.jpg|alt=A large stream of black water rippled with a few ripples passes under a blue sky and white clouds.|áká_ịkẹngạ|thumb|Logone n'ókè dị n'etiti [[Kameroon|Cameroon]] na [[Chad]]. Jenụwarị 2013.]]
== Septemba 2013 mmebi mmiri na idei mmiri ==
Nabalị nke Septemba 17 ruo Septemba 18, 2013, oké mmiri ozuzo mere ka ọdọ mmiri ahụ gbawaa n'akụkụ Osimiri Logone n'obodo Dougui, Mpaghara Kai Kai dị na Mpaghara Ugwu Kamerọn. Nke a mere ka ndị mmadụ gbapụ na mbụ n'akụkụ ọdọ mmiri ahụ. Na Septemba 27, mgbawa nke abụọ na ọdọ mmiri ahụ dị kilomita 4 (maịlụ 2.5) site na mgbawa mbụ malitere idei mmiri n'ógbè ahụ, ihe fọrọ nke nta ka ọ bụrụ mmadụ 9,000 gbapụrụ ebe obibi ha.<ref>{{Cite web|title=Cameroon: Floods - Oct 2013|work=ReliefWeb|date=4 June 2014|accessdate=2014-06-10|url=https://reliefweb.int/disaster/fl-2013-000123-cmr}}</ref><gallery>
Faịlụ:Le_fleuve_logone.jpg|Logone River
Faịlụ:Mototaxi.jpg|Mototaxi
Faịlụ:Transport_en_pirogue.jpg|Canoe
Faịlụ:Bloc_de_pierres_sur_la_rive_de_Zébé_Marao_Cameroun.jpg|Stone block on the banks of the Zébé Marao Cameroon
Faịlụ:Pirogue_vers_la_rive_opposée_à_Zébé_Marao_Cameroun.jpg|Piroge towards the shore opposite Zébé Marao Cameroon
Faịlụ:Pêcheurs_à_Zébé_Marao_Cameroun.jpg|Fishing in Zébé Marao
</gallery>
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
[[Otú:Short description is different from Wikidata]]
[[Otú:Articles with short description]]
aaw0cevz1nmr9nb0qc8032a2gzaxrra
670424
670422
2026-06-29T14:37:15Z
Adimora chidinma
15845
670424
wikitext
text/x-wiki
{| class="infobox"
! colspan="2" class="infobox-above" style="background-color: #CEDEFF;color: #202122;" |Osimiri Logone
|-
| colspan="2" class="infobox-image" |[[File:The_Logon-Birni_-_general_view.jpg|frameless]]<div class="infobox-caption">Logone-Birni, site n'akwụkwọ The earth and its inhabitants, Africa 1892</div>
|-
| colspan="2" class="infobox-image" |[[File:Charirivermap.png|250x250px]]<div class="infobox-caption">Map na-egosi Osimiri Logone n'ime ọdọ mmiri nke Osimiri Chari</div>
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Ebe
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Mba
| class="infobox-data" |<templatestyles src="Hlist/styles.css"></templatestyles><div class="hlist">
* [[Chad]]
* [[Kameroon|Cameroon]]
</div>
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Obodo
| class="infobox-data" |Kousséri
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Àgwà ya
|- class="infobox-hiddenrow" style="display:none;"
| colspan="2" class="infobox-full-data" |<templatestyles src="Module:Infobox/styles.css"></templatestyles>
|-
! class="infobox-label" scope="row" |Ebe e si nweta ya
| class="infobox-data" |
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<span style="font-weight:normal">• ebe </span>
| class="infobox-data" |[[Central African Republic]]
|-
! class="infobox-label" scope="row" |Ọnụ
| class="infobox-data" |
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• ebe </div>
| class="infobox-data" |Osimiri Chari na N'Djaména, [[Chad]]
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• akara </div>
| class="infobox-data" |<templatestyles src="Module:Coordinates/styles.css"></templatestyles><span class="geo-inline"><span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Logone_River¶ms=12_6_22_N_15_2_7_E_type:river <span class="geo-default"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">12°6′22′′N</span> <span class="longitude">15°2′7′′E</span></span></span><span class="geo-multi-punct">/__ibo____ibo____ibo__ Ọ bụ ezie na ọ bụ</span><span class="geo-nondefault"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">12.10611°N 15.03528°E</span><span style="display:none"> / <span class="geo">12.10611; 15.03528</span></span></span>]</span></span><indicator name="coordinates"><span id="coordinates">[[Geographic coordinate system|Coordinates]]: {{#parsoid�fragment:10}}<span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Logone_River¶ms=12_6_22_N_15_2_7_E_type:river <span class="geo-default"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">12°6′22″N</span> <span class="longitude">15°2′7″E</span></span></span><span class="geo-multi-punct"> / </span><span class="geo-nondefault"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">12.10611°N 15.03528°E</span><span style="display:none"> / <span class="geo">12.10611; 15.03528</span></span></span>]</span>[[Category:Pages using gadget WikiMiniAtlas]]</span></indicator>
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• ịdị elu </div>
| class="infobox-data" |364 m (1,194 ft)
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Ogologo
| class="infobox-data" |1,000 kilomita (620 mi)
|-
! class="infobox-label" scope="row" |<div style="display: inline-block; line-height: 1.2em; padding: .1em 0; ">Ogologo ọdọ mmiri</div>
| class="infobox-data" |78,000 km<sup>2</sup> (30,000 sq mi)
|- class="infobox-hiddenrow" style="display:none;"
| colspan="2" class="infobox-full-data" |<templatestyles src="Module:Infobox/styles.css"></templatestyles>
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Ịchụpụ
| class="infobox-data" |
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<span style="font-weight:normal">• nkezi </span>
| class="infobox-data" |492 m<sup>3</sup>/s (17,400 cu ft/s)
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Ihe ndị dị n'ime ala
|-
! class="infobox-label" scope="row" |Ọnọdụ nchebe
| class="infobox-data" |<templatestyles src="Module:Infobox/styles.css"></templatestyles>
|- class="mergedrow"
! colspan="2" class="infobox-header" |<templatestyles src="Module:Infobox/styles.css"></templatestyles><div style="line-height:1.5;text-align:center;border-style:solid;border-width:4px;border-color:#8DE3D2">Ala Mmiri Ramsar</div>
|- class="mergedrow"
! class="infobox-label" scope="row" |<div style="display: inline-block; line-height: 1.2em; padding: .1em 0; ">Aha gọọmentị</div>
| class="infobox-data" |Ala dị larịị nke Logone na ndagwurugwu Toupouri
|- class="mergedrow"
! class="infobox-label" scope="row" |Ndị a họpụtara
| class="infobox-data" |14 Nọvemba 2005
|- class="mergedrow"
! class="infobox-label" scope="row" |Ihe odide no.
| class="infobox-data" |1560
|}
'''Osimiri Logon''' ma ọ bụ Logone ụtụ isi mmiri nke Osimiri Chari. Isi iyi Logone dị n'ebe ọdịda anyanwụ [[Central African Republic]], n'ebe ugwu [[Kameroon|Cameroon]], na n'ebe ndịda [[Chad]]. O nwere isi mmiri abụọ: Osimiri Pendé (Eastern Logone) na prefecture Ouham-Pendé na Central African Republic na Osimiri Mbéré (Western Logone). <ref>{{Cite news|url=https://www.britannica.com/place/Logone-River|title=Logone River {{!}} river, Africa|work=Encyclopedia Britannica|accessdate=2017-06-06|language=en}}</ref> Ọtụtụ ala mmiri na ala mmiri gbara osimiri ahụ gburugburu.
Ebe obibi dị n'osimiri ahụ gụnyere Kousseri, obodo kachasị n'ebe ugwu [[Kameroon|Cameroon]], na isi obodo Chad, N'Djaména, nke dị na ebe Logone na-abanye n'Osimiri Chari.
Logone bụ akụkụ nke ókèala mba ụwa dị n'etiti Chad na Cameroon.
== Hydrometry ==
A hụla nke osimiri ahụ ihe karịrị afọ (1951-84) na Bongor, obodo dị na Chad n'okpuru mmiri nke njikọ ya na Pendé ihe dị ka 450 (280 mi) n'elu ọnụ ya n'ime Chari.<ref>[http://www.grdc.sr.unh.edu/html/Polygons/P1537150.html GRDC - Chari Basin : Der Logone in Bongor]</ref> N'oge a, Bongor hụrụ na mmiri na-asọ asọ kwa afọ ruru 492 m3/s (17,400 cu ft/s) nke mpaghara dị ihe dị ka 73,700 km2 (28,500 sq mi) na-enye ihe dị ka 94.5% nke mpaghara mmiri niile dị na Osimiri ahụ. N'ihi na mmiri na-asọ asọ siri ike, oke mmiri na-asọba n'ime osimiri ahụ na-ebelata. Na N'Djamena, mmiri na-asọ asọ na-ebelata ruo 400 m3/s (14,000 cu ft/s).{{Center|'''Nkezi mmiri osimiri Logone na-asọpụta kwa ọnwa n'ọdụ mmiri Bongor (in m<sup>3</sup> / s )'''<br/> (E jiri data ahụ gbakọọ ya ruo afọ 38, 1948–86)
<timeline>
Colors=
id:lightgrey value:gray(0.8)
id:darkgrey value:gray(0.3)
id:sfondo value:rgb(1,1,1)
id:barra value:rgb(0.6,0.8,0.9)
ImageSize = width:600 height:280
PlotArea = left:40 bottom:40 top:20 right:20
DateFormat = x.y
Period = from:0 till:1800
TimeAxis = orientation:vertical
AlignBars = justify
ScaleMajor = gridcolor:lightgrey increment:200 start:0
ScaleMinor = gridcolor:lightgrey increment:100 start:0
BackgroundColors = canvas:sfondo
BarData=
bar:Jan text:January
bar:Fév text:February
bar:Mar text:Marz
bar:Avr text:April
bar:Mai text:May
bar:Jun text:June
bar:Jul text:July
bar:Aoû text:August
bar:Sep text:Sept.
bar:Oct text:Oct.
bar:Nov text:Nov.
bar:Déc text:Dec.
PlotData=
color:barra width:30 align:left
bar:Jan from:0 till: 117
bar:Fév from:0 till: 76
bar:Mar from:0 till: 50
bar:Avr from:0 till: 51
bar:Mai from:0 till: 78
bar:Jun from:0 till: 125
bar:Jul from:0 till: 432
bar:Aoû from:0 till: 1045
bar:Sep from:0 till: 1636
bar:Oct from:0 till: 1506
bar:Nov from:0 till: 583
bar:Déc from:0 till: 202
PlotData=
bar:Jan at: 117 fontsize:S text: 117 shift:(-10,5)
bar:Fév at: 76 fontsize:S text: 76 shift:(-10,5)
bar:Mar at: 50 fontsize:S text: 50 shift:(-10,5)
bar:Avr at: 51 fontsize:S text: 51 shift:(-10,5)
bar:Mai at: 78 fontsize:S text: 78 shift:(-10,5)
bar:Jun at: 125 fontsize:S text: 125 shift:(-10,5)
bar:Jul at: 432 fontsize:S text: 432 shift:(-10,5)
bar:Aoû at: 1045 fontsize:S text: 1.045 shift:(-10,5)
bar:Sep at: 1636 fontsize:S text: 1.636 shift:(-10,5)
bar:Oct at: 1506 fontsize:S text: 1.506 shift:(-10,5)
bar:Nov at: 583 fontsize:S text: 583 shift:(-10,5)
bar:Déc at: 202 fontsize:S text: 202 shift:(-10,5)
</timeline>}}
== Ọnụ ọgụgụ ndị bi na ya ==
N'ebe ọwụwa anyanwụ nke ndagwurugwu Logone dị ala, e guzobere site na ndị Kotoko ọtụtụ sultanates akụkọ ihe mere eme (Kousseri, Logone-Birni, Makari-Goulfey na ndị ọzọ) bụ ndị vassals nke Bornu ma ọ bụ Baguirmi n'ime ókèala Cameroon nke oge a.
== Akụkọ ihe mere eme ==
Na Chad, mpaghara nchịkwa akpọrọ Logone Oriental na Logone Occidental aha osimiri ahụ. Ober-Logone bụ mpaghara nchịkwa nke mba German nke Cameroon .
[[Faịlụ:Le_fleuve_logone.jpg|thumb|Osimiri Logone, Cameroon]]
[[Faịlụ:Transport_en_pirogue1.jpg|alt=A large stream of black water rippled with a few ripples passes under a blue sky and white clouds.|áká_ịkẹngạ|thumb|Logone n'ókè dị n'etiti [[Kameroon|Cameroon]] na [[Chad]]. Jenụwarị 2013.]]
== Septemba 2013 mmebi mmiri na idei mmiri ==
Nabalị nke Septemba 17 ruo Septemba 18, 2013, oké mmiri ozuzo mere ka ọdọ mmiri ahụ gbawaa n'akụkụ Osimiri Logone n'obodo Dougui, Mpaghara Kai Kai dị na Mpaghara Ugwu Kamerọn. Nke a mere ka ndị mmadụ gbapụ na mbụ n'akụkụ ọdọ mmiri ahụ. Na Septemba 27, mgbawa nke abụọ na ọdọ mmiri ahụ dị kilomita 4 (maịlụ 2.5) site na mgbawa mbụ malitere idei mmiri n'ógbè ahụ, ihe fọrọ nke nta ka ọ bụrụ mmadụ 9,000 gbapụrụ ebe obibi ha.<ref>{{Cite web|title=Cameroon: Floods - Oct 2013|work=ReliefWeb|date=4 June 2014|accessdate=2014-06-10|url=https://reliefweb.int/disaster/fl-2013-000123-cmr}}</ref><gallery>
Faịlụ:Le_fleuve_logone.jpg|Logone River
Faịlụ:Mototaxi.jpg|Mototaxi
Faịlụ:Transport_en_pirogue.jpg|Canoe
Faịlụ:Bloc_de_pierres_sur_la_rive_de_Zébé_Marao_Cameroun.jpg|Stone block on the banks of the Zébé Marao Cameroon
Faịlụ:Pirogue_vers_la_rive_opposée_à_Zébé_Marao_Cameroun.jpg|Piroge towards the shore opposite Zébé Marao Cameroon
Faịlụ:Pêcheurs_à_Zébé_Marao_Cameroun.jpg|Fishing in Zébé Marao
</gallery>
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
[[Otú:Short description is different from Wikidata]]
[[Otú:Articles with short description]]
b8orn9siawf7uyhc7qcbvenm832fy32
Idi Farouk
0
77132
670423
2026-06-29T13:33:00Z
NiferO
20385
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1345993557|Idi Farouk]]"
670423
wikitext
text/x-wiki
<templatestyles src="Module:Message box/ambox.css"></templatestyles> <templatestyles src="Module:Infobox/styles.css"></templatestyles>
'''Idi Farouk''' (amụrụ na 14 n'ọnwa Machị afọ 1949) bụ onye ndọrọ ndọrọ ọchịchị Naijiria na onye bụbu onye isi oche nke National Orientation Agency (NOA) .<ref>{{Cite news|author=Rapheal|date=2020-02-02|title=I want president of Igbo extraction, but not Igbo President –Idi Farouk, Ex-Noa DG|url=https://sunnewsonline.com/i-want-president-of-igbo-extraction-but-not-igbo-president-idi-farouk-ex-noa-dg/|accessdate=2023-05-27|work=[[The Sun (Nigeria)|The Sun]]|language=en}}</ref><ref>{{Cite news|author=Nzeshi|first=Onwuka|date=2021-08-08|title=Idi Farouk: Except Buhari wakes up, insecurity'll be his only legacy|url=https://newtelegraphng.com/idi-farouk-except-buhari-wakes-up-insecurityll-be-his-only-legacy/|accessdate=2023-05-16|work=[[New Telegraph]]|language=en-US}}</ref><ref>{{Cite news|date=2020-04-26|title=Why FG palliatives are not reaching targets – Idi Farouk|url=https://dailytrust.com/why-fg-palliatives-are-not-reaching-targets-idi-farouk/|accessdate=2023-05-16|work=[[Daily Trust]]|language=en-GB}}</ref>
== Ndabere na agụmakwụkwọ ==
A mụrụ Idi Farouk na Kano na mbido afọ 1949. Ọ bụ nwa amaala Dako Kaduna North Local Government Area nke Kaduna Steeti. Farouk nwetara agụmakwụkwọ mbụ ya na CMS Primary School site n'afọ 1955 ruo afọ 1961 tupu ọ banye na St. Paul's College Wusasa, Zaria maka agụmakwụkwọ sekọndrị ya.
== Ọrụ ==
Mgbe ọ gụsịrị akwụkwọ sekọndrị, Farouk rụrụ ọrụ na BP Supergas dị ka onye odeakwụkwọ distrikti ma mesịa nyefee ọrụ ya na Kingsway Stores Kaduna dị ka onye edemede na onye na-elekọta ụlọ ahịa. N'afọ 1958, ọ debanyere aha na Ndị Agha Ụgbọelu Naịjirịa dị ka onye na-efe efe ma nọgide na-arụ ọrụ ahụ ruo n'afọ 1974 mgbe ọ hapụrụ ọrụ ahụ wee sonye na News-Lab Advertising Agency na Public Relations Consultant dị ka onye nduzi.<ref name=":0">{{Cite web|date=2023-05-22|title=ALHAJI IDI FARUK: A TRUE DETRIBALISED NIGERIAN DEMOCRAT AND A BRIDGE BUILDER|url=https://bellnewsonline.com/alhaji-idi-faruk-a-true-detribalised-nigerian-democrat-and-a-bridge-builder/|accessdate=2023-05-25|work=Bell News|language=en-US}}</ref>
== Nhọpụta ndọrọ ndọrọ ọchịchị ==
Gọọmentị Kaduna Steeti họpụtara Farouk ka ọ bụrụ onye odeakwụkwọ na-anọgide na-ahụ maka mmekọrịta n'afọ 1983. Ọ rụrụ ọrụ ruo n'afọ 1986 mgbe a họpụtara ya dịka Onye isi oche / Onye nchịkwa nke Kaduna Local Government Council, ọkwá o nwere otu afọ (1986-1987) tupu a họpụta ya ka ọ bụrụ odeakwụkwọ na-adịgide adịgide na Ministry of Information, Kaduna State.<ref name=":0">{{Cite web|date=2023-05-22|title=ALHAJI IDI FARUK: A TRUE DETRIBALISED NIGERIAN DEMOCRAT AND A BRIDGE BUILDER|url=https://bellnewsonline.com/alhaji-idi-faruk-a-true-detribalised-nigerian-democrat-and-a-bridge-builder/|accessdate=2023-05-25|work=Bell News|language=en-US}}</ref>
Farouk rụrụ ọrụ dịka onyeisi oche nke nzukọ ogbako iwu obodo nke steeti Kaduna n'afọ 1994, ebe o dere iwu obodo maka ndị Emir na ndị isi obodo nke ugwu. A họpụtara ya dịka kọmishọna maka ozi na steeti Kaduna n'afọ 1994. Na afọ 1999, a họpụtara Farouk dịka onyeisi ndị ọrụ nke gọvanọ steeti Kaduna. Farouk jere ozi n'ọkwa a ruo afọ 2003 mgbe a họpụtara ya dịka onye isi nchịkwa nke National Orientation Agency; <ref>{{Cite web|title=NOA Past Chief Executives – National Orientation Agency|url=https://www.noa.gov.ng/noa-past-chief-executives/|accessdate=2023-05-27|language=en-US}}</ref> n'otu oge ahụ, ọ bụ onye otu Joint Intelligence Board, ọfịs nke National Security Adviser.<ref>{{Cite news|date=2020-04-26|title=Why FG palliatives are not reaching targets – Idi Farouk|url=https://dailytrust.com/why-fg-palliatives-are-not-reaching-targets-idi-farouk/|accessdate=2023-05-27|work=[[Daily Trust]]|language=en-GB}}</ref> Farouk bụ osote onye isi nchịkwa, Obasanjo / Atiku Presidential Campaign Organization maka mkpọsa ntuli aka ha n'afọ 2003. N'afọ 2015, ọ bụ onye isi oche nke Kaduna State APC Governorship Campaign Council. Farouk na-eje ozi dị ka Onye isi oche nke ndị nduzi nke New Telegram Newspapers.<ref>{{Cite news|author=Webmaster|date=2014-12-07|title=Why APC presidential aspirants can't agree on consensus - Idi Farouk|url=https://dailytrust.com/why-apc-presidential-aspirants-can-t-agree-on-consensus-idi-farouk/|accessdate=2023-05-27|work=[[Daily Trust]]|language=en-GB}}</ref><ref name=":0">{{Cite web|date=2023-05-22|title=ALHAJI IDI FARUK: A TRUE DETRIBALISED NIGERIAN DEMOCRAT AND A BRIDGE BUILDER|url=https://bellnewsonline.com/alhaji-idi-faruk-a-true-detribalised-nigerian-democrat-and-a-bridge-builder/|accessdate=2023-05-25|work=Bell News|language=en-US}}</ref>
== Edensibia ==
<references />
[[Otú:Mmadụ ndi di ndụ]]
[[Otú:Articles with hCards]]
pk884rwqocfctcmpvvpza0jvq51j173
Ogige Ntụrụndụ Mangroves
0
77133
670425
2026-06-29T15:43:04Z
Adimora chidinma
15845
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1346119247|Mangroves National Park]]"
670425
wikitext
text/x-wiki
'''Mangroves National Park''' (nakwa French: Parc marin des Mangroves ma ọ bụ Nchekwa Mmiri Muanda) bụ mpaghara echedoro na ala mmiri Ramsar dị na[[Democratic Republic of the Congo]]. Ọ bụ naanị ogige mmiri dị na mba ahụ ma a ma ama maka ya ọhịa mangrove. Ọ na-echebe ndị manatee nọ n'ihe ize ndụ dị n'ọnụ Osimiri Congo.<ref name="Rorison" /> Osisi mangrove ndị a dị iche na nke dị na ndịda Eshia. Ha na-etolite ụdị ọhịa mangrove dị iche, nke a na-ahụkarị na Democratic Republic of Congo. <sup class="noprint Inline-Template Template-Fact" style="white-space:nowrap;">[''[[wikipedia:Tinye edensibịa|<span title="This claim needs references to reliable sources. (June 2011)">citation needed</span>]]'']</sup> E guzobere ogige ntụrụndụ ahụ n'afọ 1992.<ref name="Rorison">{{Cite book|author=Rorison|first=Sean|title=Bradt Congo: Democratic Republic - Republic|pages=120–121|publisher=[[Bradt Travel Guides]]|year=2008|isbn=978-1-84162-233-0|url=https://books.google.com/books?id=cXJyOKBqJZwC&dq=%22Mangroves+National+Park%22&pg=PA120}}</ref>
== Ọdịdị ala ==
<nowiki>Na " data-ve-ignore="">2" data-mw='{"parts":[{"template":{"target":{"wt":"Convert","href":"./Template:Convert"},"params":{"1":{"wt":"768"},"2":{"wt":"km2"},"3":{"wt":"mi2"},"abbr":{"wt":"on"}},"i":0}}]}' data-ve-no-generated-contents="true" id="mwOw" typeof="mw:Transclusion">768 km2 mi2) n'ogo, ogige ntụrụndụ ahụ bụ ebe nchekwa kacha nta na DR Congo.</nowiki><ref name="Rorison">{{Cite book|author=Rorison|first=Sean|title=Bradt Congo: Democratic Republic - Republic|pages=120–121|publisher=[[Bradt Travel Guides]]|year=2008|isbn=978-1-84162-233-0|url=https://books.google.com/books?id=cXJyOKBqJZwC&dq=%22Mangroves+National+Park%22&pg=PA120}}<cite class="citation book cs1" data-ve-ignore="" id="CITEREFRorison2008">Rorison, Sean (2008). </cite></ref>
== Flora na anụmanụ ==
Na mgbakwunye na Manatee, mpaghara ahụ na-akwado Enyí mmiri, agụ iyi, agwọ, <ref name="Rorison">{{Cite book|author=Rorison|first=Sean|title=Bradt Congo: Democratic Republic - Republic|pages=120–121|publisher=[[Bradt Travel Guides]]|year=2008|isbn=978-1-84162-233-0|url=https://books.google.com/books?id=cXJyOKBqJZwC&dq=%22Mangroves+National+Park%22&pg=PA120}}<cite class="citation book cs1" data-ve-ignore="" id="CITEREFRorison2008">Rorison, Sean (2008). </cite></ref> na reedbuck ndịda. bushbuck nwekwara ike ịnọ ya.<ref name="East1990">{{Cite book|author=East|first=Rod|title=Antelopes: West and Central Africa. 1990|url=https://books.google.com/books?id=n22ER5vZqTkC&pg=PA131|accessdate=18 May 2013|year=1990|publisher=International Union for Conservation of Nature|isbn=978-2-8317-0016-8|pages=131, 135–}}</ref>
Ụdị mangrove dị na ya gụnyere ''Rhizophora racemosa'', ''Rhizophora mangle'', ''Avicennia nitida'', ''Avicennia germinans'' na ''Laguncularia racemosa''. Osisi ndị ọzọ gụnyere ''Hibiscus tiliaceus'' na ''Acrostichum aureum'' . <ref>{{Cite web|url=https://rsis.ramsar.org/RISapp/files/RISrep/CD788RIS.pdf|title=Fiche descriptive sur les zones humides de Ramsar: Parc National des Mangroves|work=Ramsar Sites Information Service|accessdate=8 November 2025|language=fr|date=6 November 1994}}</ref>
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
== Njikọ mpụga ==
* [https://web.archive.org/web/20110724020816/http://postconflict.unep.ch/congo/en/content/mangroves-national-park Nnyocha nke United Nations Environment Programme]
{{National Parks of the Democratic Republic of Congo}}
3fe9w6qtzu3d62hodhe51kh2dmv4des
670426
670425
2026-06-29T17:08:57Z
Adimora chidinma
15845
670426
wikitext
text/x-wiki
'''Mangroves National Park''' (nakwa French: Parc marin des Mangroves ma ọ bụ Nchekwa Mmiri Muanda) bụ mpaghara echedoro na ala mmiri Ramsar dị na[[Democratic Republic of the Congo]]. Ọ bụ naanị ogige mmiri dị na mba ahụ ma a ma ama maka ya ọhịa mangrove. Ọ na-echebe ndị manatee nọ n'ihe ize ndụ dị n'ọnụ Osimiri Congo.<ref name="Rorison" /> Osisi mangrove ndị a dị iche na nke dị na ndịda Eshia. Ha na-etolite ụdị ọhịa mangrove dị iche, nke a na-ahụkarị na Democratic Republic of Congo. <sup class="noprint Inline-Template Template-Fact" style="white-space:nowrap;">[''[[wikipedia:Tinye edensibịa|<span title="This claim needs references to reliable sources. (June 2011)">citation needed</span>]]'']</sup> E guzobere ogige ntụrụndụ ahụ n'afọ 1992.<ref name="Rorison">{{Cite book|author=Rorison|first=Sean|title=Bradt Congo: Democratic Republic - Republic|pages=120–121|publisher=[[Bradt Travel Guides]]|year=2008|isbn=978-1-84162-233-0|url=https://books.google.com/books?id=cXJyOKBqJZwC&dq=%22Mangroves+National+Park%22&pg=PA120}}</ref>
== Ọdịdị ala ==
<nowiki>Na " data-ve-ignore="">2" data-mw='{"parts":[{"template":{"target":{"wt":"Convert","href":"./Template:Convert"},"params":{"1":{"wt":"768"},"2":{"wt":"km2"},"3":{"wt":"mi2"},"abbr":{"wt":"on"}},"i":0}}]}' data-ve-no-generated-contents="true" id="mwOw" typeof="mw:Transclusion">768 km2 mi2) n'ogo, ogige ntụrụndụ ahụ bụ ebe nchekwa kacha nta na DR Congo.</nowiki><ref name="Rorison" />
== Flora na anụmanụ ==
Na mgbakwunye na Manatee, mpaghara ahụ na-akwado Enyí mmiri, agụ iyi, agwọ, <ref name="Rorison" /> na reedbuck ndịda. bushbuck nwekwara ike ịnọ ya.<ref name="East1990">{{Cite book|author=East|first=Rod|title=Antelopes: West and Central Africa. 1990|url=https://books.google.com/books?id=n22ER5vZqTkC&pg=PA131|accessdate=18 May 2013|year=1990|publisher=International Union for Conservation of Nature|isbn=978-2-8317-0016-8|pages=131, 135–}}</ref>
Ụdị mangrove dị na ya gụnyere ''Rhizophora racemosa'', ''Rhizophora mangle'', ''Avicennia nitida'', ''Avicennia germinans'' na ''Laguncularia racemosa''. Osisi ndị ọzọ gụnyere ''Hibiscus tiliaceus'' na ''Acrostichum aureum'' . <ref>{{Cite web|url=https://rsis.ramsar.org/RISapp/files/RISrep/CD788RIS.pdf|title=Fiche descriptive sur les zones humides de Ramsar: Parc National des Mangroves|work=Ramsar Sites Information Service|accessdate=8 November 2025|language=fr|date=6 November 1994}}</ref>
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
== Njikọ mpụga ==
* [https://web.archive.org/web/20110724020816/http://postconflict.unep.ch/congo/en/content/mangroves-national-park Nnyocha nke United Nations Environment Programme]
{{National Parks of the Democratic Republic of Congo}}
bl2pwpbnrariugs1kqw6fg8tknempfg
670427
670426
2026-06-29T17:18:32Z
Adimora chidinma
15845
670427
wikitext
text/x-wiki
{{Short description|National park & wetland in the Democratic Republic of the Congo}}
{{About|the Ramsar wetland in the eastern part of the DR Congo|the UAE national park|Abu Dhabi Central Capital District#Ecology Mangrove National Park, Abu Dhabi}}
{{Infobox protected area
| name = Mangroves National Park<br>''Réserve marine de Muanda''
| iucn_category = II
| image = Parc Marin des Mangroves - RDC 1.jpg
| image_caption =
| location = [[Democratic Republic of the Congo]]
| nearest_city =
| map = Democratic Republic of the Congo
| relief = 1
| coordinates = {{Coord|5|45|S|12|45|E|format=dms|display=inline,title}}
| area = 768 km<sup>2</sup>
| established = 1992
| visitation_num =
| visitation_year =
| governing_body = [[Institut Congolais pour la Conservation de la Nature]]
| module = {{Designation list
| embed = yes
| designation1 = Ramsar
| designation1_offname = Parc national des Mangroves
| designation1_date = 18 January 1996
| designation1_number = 788<ref>{{Cite web|title=Parc national des Mangroves|website=[[Ramsar Convention|Ramsar]] Sites Information Service|url=https://rsis.ramsar.org/ris/788|accessdate=25 April 2018}}</ref>}}
}}
'''Mangroves National Park''' (nakwa French: Parc marin des Mangroves ma ọ bụ Nchekwa Mmiri Muanda) bụ mpaghara echedoro na ala mmiri Ramsar dị na[[Democratic Republic of the Congo]]. Ọ bụ naanị ogige mmiri dị na mba ahụ ma a ma ama maka ya ọhịa mangrove. Ọ na-echebe ndị manatee nọ n'ihe ize ndụ dị n'ọnụ Osimiri Congo.<ref name="Rorison" /> Osisi mangrove ndị a dị iche na nke dị na ndịda Eshia. Ha na-etolite ụdị ọhịa mangrove dị iche, nke a na-ahụkarị na Democratic Republic of Congo. <sup class="noprint Inline-Template Template-Fact" style="white-space:nowrap;">[''[[wikipedia:Tinye edensibịa|<span title="This claim needs references to reliable sources. (June 2011)">citation needed</span>]]'']</sup> E guzobere ogige ntụrụndụ ahụ n'afọ 1992.<ref name="Rorison">{{Cite book|author=Rorison|first=Sean|title=Bradt Congo: Democratic Republic - Republic|pages=120–121|publisher=[[Bradt Travel Guides]]|year=2008|isbn=978-1-84162-233-0|url=https://books.google.com/books?id=cXJyOKBqJZwC&dq=%22Mangroves+National+Park%22&pg=PA120}}</ref>
== Ọdịdị ala ==
Na {{Convert|768|km2|mi2|abbr=on}} n'ogo ya, ogige ntụrụndụ ahụ bụ ebe nchekwa kacha nta na DR Congo.<ref name=Rorison />
== Flora na anụmanụ ==
Na mgbakwunye na manatee, mpaghara ahụ na-akwado hippopotamuses, agọs, agwọs,<ref name=Rorison /> and southern reedbuck. The bushbuck may also be present.<ref name="East1990">{{cite book|last=East|first=Rod|title=Antelopes: West and Central Africa. 1990|url=https://books.google.com/books?id=n22ER5vZqTkC&pg=PA131|accessdate=18 May 2013|year=1990|publisher=International Union for Conservation of Nature|isbn=978-2-8317-0016-8|pages=131, 135–}}</ref>
Mangrove species present include ''Rhizophora racemosa'', ''Rhizophora mangle'', ''Avicennia nitida'', ''Avicennia germinans'' and ''Laguncularia racemosa''. Other flora include ''Hibiscus tiliaceus'' and ''Acrostichum aureum''.<ref>{{cite web|url=https://rsis.ramsar.org/RISapp/files/RISrep/CD788RIS.pdf|title=Fiche descriptive sur les zones humides de Ramsar: Parc National des Mangroves|website=Ramsar Sites Information Service|access-date=8 November 2025|language=fr|date=6 November 1994}}</ref>
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
== Njikọ mpụga ==
* [https://web.archive.org/web/20110724020816/http://postconflict.unep.ch/congo/en/content/mangroves-national-park Nnyocha nke United Nations Environment Programme]
{{National Parks of the Democratic Republic of Congo}}
dlhv1yhrfyml0lgl08mx9uvcrf97ykh
670428
670427
2026-06-29T17:20:57Z
Adimora chidinma
15845
670428
wikitext
text/x-wiki
{{Short description|National park & wetland in the Democratic Republic of the Congo}}
{{Infobox protected area
| name = Mangroves National Park<br>''Réserve marine de Muanda''
| iucn_category = II
| image = Parc Marin des Mangroves - RDC 1.jpg
| image_caption =
| location = [[Democratic Republic of the Congo]]
| nearest_city =
| map = Democratic Republic of the Congo
| relief = 1
| coordinates = {{Coord|5|45|S|12|45|E|format=dms|display=inline,title}}
| area = 768 km<sup>2</sup>
| established = 1992
| visitation_num =
| visitation_year =
| governing_body = [[Institut Congolais pour la Conservation de la Nature]]
| module = {{Designation list
| embed = yes
| designation1 = Ramsar
| designation1_offname = Parc national des Mangroves
| designation1_date = 18 January 1996
| designation1_number = 788<ref>{{Cite web|title=Parc national des Mangroves|website=[[Ramsar Convention|Ramsar]] Sites Information Service|url=https://rsis.ramsar.org/ris/788|accessdate=25 April 2018}}</ref>}}
}}
'''Mangroves National Park''' (nakwa French: Parc marin des Mangroves ma ọ bụ Nchekwa Mmiri Muanda) bụ mpaghara echedoro na ala mmiri Ramsar dị na[[Democratic Republic of the Congo]]. Ọ bụ naanị ogige mmiri dị na mba ahụ ma a ma ama maka ya ọhịa mangrove. Ọ na-echebe ndị manatee nọ n'ihe ize ndụ dị n'ọnụ Osimiri Congo.<ref name="Rorison" /> Osisi mangrove ndị a dị iche na nke dị na ndịda Eshia. Ha na-etolite ụdị ọhịa mangrove dị iche, nke a na-ahụkarị na Democratic Republic of Congo. <sup class="noprint Inline-Template Template-Fact" style="white-space:nowrap;">[''[[wikipedia:Tinye edensibịa|<span title="This claim needs references to reliable sources. (June 2011)">citation needed</span>]]'']</sup> E guzobere ogige ntụrụndụ ahụ n'afọ 1992.<ref name="Rorison">{{Cite book|author=Rorison|first=Sean|title=Bradt Congo: Democratic Republic - Republic|pages=120–121|publisher=[[Bradt Travel Guides]]|year=2008|isbn=978-1-84162-233-0|url=https://books.google.com/books?id=cXJyOKBqJZwC&dq=%22Mangroves+National+Park%22&pg=PA120}}</ref>
== Ọdịdị ala ==
Na {{Convert|768|km2|mi2|abbr=on}} n'ogo ya, ogige ntụrụndụ ahụ bụ ebe nchekwa kacha nta na DR Congo.<ref name=Rorison />
== Flora na anụmanụ ==
Na mgbakwunye na manatee, mpaghara ahụ na-akwado hippopotamuses, agọs, agwọs,<ref name=Rorison /> and southern reedbuck. The bushbuck may also be present.<ref name="East1990">{{cite book|last=East|first=Rod|title=Antelopes: West and Central Africa. 1990|url=https://books.google.com/books?id=n22ER5vZqTkC&pg=PA131|accessdate=18 May 2013|year=1990|publisher=International Union for Conservation of Nature|isbn=978-2-8317-0016-8|pages=131, 135–}}</ref>
Mangrove species present include ''Rhizophora racemosa'', ''Rhizophora mangle'', ''Avicennia nitida'', ''Avicennia germinans'' and ''Laguncularia racemosa''. Other flora include ''Hibiscus tiliaceus'' and ''Acrostichum aureum''.<ref>{{cite web|url=https://rsis.ramsar.org/RISapp/files/RISrep/CD788RIS.pdf|title=Fiche descriptive sur les zones humides de Ramsar: Parc National des Mangroves|website=Ramsar Sites Information Service|access-date=8 November 2025|language=fr|date=6 November 1994}}</ref>
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
== Njikọ mpụga ==
* [https://web.archive.org/web/20110724020816/http://postconflict.unep.ch/congo/en/content/mangroves-national-park Nnyocha nke United Nations Environment Programme]
{{National Parks of the Democratic Republic of Congo}}
keqmq78jm73h03cfdtatg0gul7cg05m
Abolarin Ganiyu Gabriel
0
77134
670432
2026-06-29T18:27:31Z
Anastesia chi
23720
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1360682687|Abolarin Ganiyu Gabriel]]"
670432
wikitext
text/x-wiki
<templatestyles src="Module:Message box/ambox.css"></templatestyles> <templatestyles src="Module:Infobox/styles.css"></templatestyles>{{Infobox officeholder
| honorific_prefix = [[The Honourable]]
| name = Abolarin Ganiyu Gabriel
| honorific_suffix =
| image =
| width =
| alt =
| caption =
| office1 = Member of the [[Kwara State House of Assembly]]
| termstart1 = 18 March 2023
| termend1 =
| deputy1 =
| predecessor1 =
| successor1 =
| office2 = Member of the [[Kwara State House of Assembly]]<br>from Odo-Itan, Ekiti Local Government
| termstart2 = 18 March 2023
| termend2 =
| predecessor2 =
| successor2 =
| birth_date = {{birth date and age|1976|03|23|df=y}}
| birth_place = [[ Odo-Itan]], Ekiti Local Government [[Kwara State]] [[Nigeria]]
| death_date =
| death_place =
| party = [[All Progressive Congress]]
| spouse =
| children =
| relations =
| alma_mater = {{plainlist|
* [[Federal Polytechnic, Offa]]
}}
| occupation = {{hlist|Politician|Accountant}}
| education = [[Federal Polytechnic, Offa]]
| profession =
| awards =
| website =
}}
Abolarin Ganiyu Gabriel bụ onye ọrụ ugbo na onye ndọrọ ndọrọ ọchịchị Naijiria na-anọchite anya mpaghara Ekiti, mpaghara gọọmentị Ekiti na Ụlọ Nzukọ nke Kwara Steeti na nzukọ nke itoolu na nke iri <ref name=":0">{{Cite web|title=HON. ABOLARIN GANIYU GABRIEL|url=https://hoa.kw.gov.ng/hon-abolarin-ganiyu-gabriel/|accessdate=2024-12-26|work=Kwara State House of Assembly|language=en-US}}</ref><ref name=":1">{{Cite news|author=Adebayo|first=Abdulrazaq|date=2022-05-26|title=2023: Kwara Speaker, 10 other members secure tickets for re-election|url=https://dailypost.ng/2022/05/26/2023-kwara-speaker-10-other-members-secure-tickets-for-re-election/|accessdate=2024-12-26|work=[[Daily Post (Nigeria)|Daily Post]]|language=en-US}}</ref><ref>{{Cite news|title=Kwara: New budget will prioritise ongoing projects, says Gov|url=https://dailytrust.com/kwara-new-budget-will-prioritise-ongoing-projects-says-gov/|accessdate=2024-12-26|work=[[Daily Trust]]|date=6 October 2023}}</ref>
== Mbido ndụ na agụmakwụkwọ ==
A mụrụ Abolarin na ọnwa Machị n'ụbọchi nke iri abụọ na atọ n'afọ 1976 na Odo-Itan, mpaghara Gọọmentị Obodo Ekiti Kwara Steeti Niajirịa .Ọ gụrụ akwụkwọ ndekọ ego na [[Federal Polytechnic, Offa]] maka Asambodo mba ya na Kwara State Polytechnic maka Higher National Diploma ya n'otu ngalaba ahụ ọ gụsịrị na 2011.<ref name=":0">{{Cite web|title=HON. ABOLARIN GANIYU GABRIEL|url=https://hoa.kw.gov.ng/hon-abolarin-ganiyu-gabriel/|accessdate=2024-12-26|work=Kwara State House of Assembly|language=en-US}}</ref><ref>{{Cite web|title=Kwara State House of Assembly|url=https://www.kwha.gov.ng/KWHA/Pages/_Gabriel|accessdate=2024-12-26|work=www.kwha.gov.ng|archivedate=26 February 2024|archiveurl=https://web.archive.org/web/20240226080219/https://www.kwha.gov.ng/KWHA/Pages/_Gabriel}}</ref>
== Ọrụ ==
Abolarin bụ onye azụmahịa nwere ahụmihe n'ịzụ ahịa na ire ere, ọkachasị na koko. Tupu ọ banye n'ọchịchị, ọ nọ n'ọkwa dịka onye isi mmepụta ihe na Akinniyi Produce Nigeria Ltd. na Idanre, Ondo Steeti, site n'afọ 1997 ruo afọ 2002. N'afọ 2019, o sonyere ma merie ntuli aka dị ka onye otu nke Nzụkọ nke iri na itoolu na Kwara Steeti n'okpuru ikpo okwu All Progressive Congress ma merie nhọpụta ya ọzọ na ntuli aka 2023 iji nọchite anya ụlọomebe iwu nke Ekiti na Nzukọ nke iri n'ụlọ Nzukọ nke Kware Steeti. <ref name=":0">{{Cite web|title=HON. ABOLARIN GANIYU GABRIEL|url=https://hoa.kw.gov.ng/hon-abolarin-ganiyu-gabriel/|accessdate=2024-12-26|work=Kwara State House of Assembly|language=en-US}}<cite class="citation web cs1" data-ve-ignore="">[https://hoa.kw.gov.ng/hon-abolarin-ganiyu-gabriel/ "HON. ABOLARIN GANIYU GABRIEL"]. ''Kwara State House of Assembly''<span class="reference-accessdate">. Retrieved <span class="nowrap">26 December</span> 2024</span>.</cite></ref><ref name=":1">{{Cite news|author=Adebayo|first=Abdulrazaq|date=2022-05-26|title=2023: Kwara Speaker, 10 other members secure tickets for re-election|url=https://dailypost.ng/2022/05/26/2023-kwara-speaker-10-other-members-secure-tickets-for-re-election/|accessdate=2024-12-26|work=[[Daily Post (Nigeria)|Daily Post]]|language=en-US}}<cite class="citation news cs1" data-ve-ignore="" id="CITEREFAdebayo2022">Adebayo, Abdulrazaq (26 May 2022). [https://dailypost.ng/2022/05/26/2023-kwara-speaker-10-other-members-secure-tickets-for-re-election/ "2023: Kwara Speaker, 10 other members secure tickets for re-election"]. ''[[Daily Post (Nigeria)|Daily Post]]''. Lagos, Nigeria. [https://web.archive.org/web/20230419074826/https://dailypost.ng/2022/05/26/2023-kwara-speaker-10-other-members-secure-tickets-for-re-election/ Archived] from the original on 19 April 2023<span class="reference-accessdate">. Retrieved <span class="nowrap">26 December</span> 2024</span>.</cite></ref>
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
[[Otú:Mmadụ ndi di ndụ]]
[[Otú:Ndị ndọrọ ndọrọ ọchịchị Naijiria]]
[[Otú:Ndị amụrụ n'afọ 1976]]
6dgso504gumis652nbecucv1li9bo1k
670442
670432
2026-06-29T18:35:21Z
Anastesia chi
23720
670442
wikitext
text/x-wiki
<templatestyles src="Module:Message box/ambox.css"></templatestyles> <templatestyles src="Module:Infobox/styles.css"></templatestyles>{{Infobox officeholder
| honorific_prefix = [[The Honourable]]
| name = Abolarin Ganiyu Gabriel
| honorific_suffix =
| image =
| width =
| alt =
| caption =
| office1 = Member of the [[Kwara State House of Assembly]]
| termstart1 = 18 March 2023
| termend1 =
| deputy1 =
| predecessor1 =
| successor1 =
| office2 = Member of the [[Kwara State House of Assembly]]<br>from Odo-Itan, Ekiti Local Government
| termstart2 = 18 March 2023
| termend2 =
| predecessor2 =
| successor2 =
| birth_date = {{birth date and age|1976|03|23|df=y}}
| birth_place = [[ Odo-Itan]], Ekiti Local Government [[Kwara State]] [[Nigeria]]
| death_date =
| death_place =
| party = [[All Progressive Congress]]
| spouse =
| children =
| relations =
| alma_mater = {{plainlist|
* [[Federal Polytechnic, Offa]]
}}
| occupation = {{hlist|Politician|Accountant}}
| education = [[Federal Polytechnic, Offa]]
| profession =
| awards =
| website =
}}
Abolarin Ganiyu Gabriel bụ onye ọrụ ugbo na onye ndọrọ ndọrọ ọchịchị Naijiria na-anọchite anya mpaghara Ekiti, mpaghara gọọmentị Ekiti na Ụlọ Nzukọ nke Kwara Steeti na nzukọ nke itoolu na nke iri <ref name=":0">{{Cite web|title=HON. ABOLARIN GANIYU GABRIEL|url=https://hoa.kw.gov.ng/hon-abolarin-ganiyu-gabriel/|accessdate=2024-12-26|work=Kwara State House of Assembly|language=en-US}}</ref><ref name=":1">{{Cite news|author=Adebayo|first=Abdulrazaq|date=2022-05-26|title=2023: Kwara Speaker, 10 other members secure tickets for re-election|url=https://dailypost.ng/2022/05/26/2023-kwara-speaker-10-other-members-secure-tickets-for-re-election/|accessdate=2024-12-26|work=[[Daily Post (Nigeria)|Daily Post]]|language=en-US}}</ref><ref>{{Cite news|title=Kwara: New budget will prioritise ongoing projects, says Gov|url=https://dailytrust.com/kwara-new-budget-will-prioritise-ongoing-projects-says-gov/|accessdate=2024-12-26|work=[[Daily Trust]]|date=6 October 2023}}</ref>
== Mbido ndụ na agụmakwụkwọ ==
A mụrụ Abolarin na ọnwa Machị n'ụbọchi nke iri abụọ na atọ n'afọ 1976 na Odo-Itan, mpaghara Gọọmentị Obodo Ekiti Kwara Steeti Niajirịa .Ọ gụrụ akwụkwọ ndekọ ego na [[Federal Polytechnic, Offa]] maka Asambodo mba ya na Kwara State Polytechnic maka Higher National Diploma ya n'otu ngalaba ahụ ọ gụsịrị na 2011.<ref name=":0" /> <ref>{{Cite web|title=Kwara State House of Assembly|url=https://www.kwha.gov.ng/KWHA/Pages/_Gabriel|accessdate=2024-12-26|work=www.kwha.gov.ng|archivedate=26 February 2024|archiveurl=https://web.archive.org/web/20240226080219/https://www.kwha.gov.ng/KWHA/Pages/_Gabriel}}</ref>
== Ọrụ ==
Abolarin bụ onye azụmahịa nwere ahụmihe n'ịzụ ahịa na ire ere, ọkachasị na koko. Tupu ọ banye n'ọchịchị, ọ nọ n'ọkwa dịka onye isi mmepụta ihe na Akinniyi Produce Nigeria Ltd. na Idanre, Ondo Steeti, site n'afọ 1997 ruo afọ 2002. N'afọ 2019, o sonyere ma merie ntuli aka dị ka onye otu nke Nzụkọ nke iri na itoolu na Kwara Steeti n'okpuru ikpo okwu All Progressive Congress ma merie nhọpụta ya ọzọ na ntuli aka 2023 iji nọchite anya ụlọomebe iwu nke Ekiti na Nzukọ nke iri n'ụlọ Nzukọ nke Kware Steeti. <ref name=":0" /> <ref name=":1" />
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
[[Otú:Mmadụ ndi di ndụ]]
[[Otú:Ndị ndọrọ ndọrọ ọchịchị Naijiria]]
[[Otú:Ndị amụrụ n'afọ 1976]]
3xjo9i3c0s1x5p0f3f7pebumcm7euo9
670448
670442
2026-06-29T18:40:18Z
Anastesia chi
23720
Anastesia chi moved page [[E wepụrụ Ganiyu Gabriel]] to [[Abolarin Ganiyu Gabriel]]: Misspelled title
670442
wikitext
text/x-wiki
<templatestyles src="Module:Message box/ambox.css"></templatestyles> <templatestyles src="Module:Infobox/styles.css"></templatestyles>{{Infobox officeholder
| honorific_prefix = [[The Honourable]]
| name = Abolarin Ganiyu Gabriel
| honorific_suffix =
| image =
| width =
| alt =
| caption =
| office1 = Member of the [[Kwara State House of Assembly]]
| termstart1 = 18 March 2023
| termend1 =
| deputy1 =
| predecessor1 =
| successor1 =
| office2 = Member of the [[Kwara State House of Assembly]]<br>from Odo-Itan, Ekiti Local Government
| termstart2 = 18 March 2023
| termend2 =
| predecessor2 =
| successor2 =
| birth_date = {{birth date and age|1976|03|23|df=y}}
| birth_place = [[ Odo-Itan]], Ekiti Local Government [[Kwara State]] [[Nigeria]]
| death_date =
| death_place =
| party = [[All Progressive Congress]]
| spouse =
| children =
| relations =
| alma_mater = {{plainlist|
* [[Federal Polytechnic, Offa]]
}}
| occupation = {{hlist|Politician|Accountant}}
| education = [[Federal Polytechnic, Offa]]
| profession =
| awards =
| website =
}}
Abolarin Ganiyu Gabriel bụ onye ọrụ ugbo na onye ndọrọ ndọrọ ọchịchị Naijiria na-anọchite anya mpaghara Ekiti, mpaghara gọọmentị Ekiti na Ụlọ Nzukọ nke Kwara Steeti na nzukọ nke itoolu na nke iri <ref name=":0">{{Cite web|title=HON. ABOLARIN GANIYU GABRIEL|url=https://hoa.kw.gov.ng/hon-abolarin-ganiyu-gabriel/|accessdate=2024-12-26|work=Kwara State House of Assembly|language=en-US}}</ref><ref name=":1">{{Cite news|author=Adebayo|first=Abdulrazaq|date=2022-05-26|title=2023: Kwara Speaker, 10 other members secure tickets for re-election|url=https://dailypost.ng/2022/05/26/2023-kwara-speaker-10-other-members-secure-tickets-for-re-election/|accessdate=2024-12-26|work=[[Daily Post (Nigeria)|Daily Post]]|language=en-US}}</ref><ref>{{Cite news|title=Kwara: New budget will prioritise ongoing projects, says Gov|url=https://dailytrust.com/kwara-new-budget-will-prioritise-ongoing-projects-says-gov/|accessdate=2024-12-26|work=[[Daily Trust]]|date=6 October 2023}}</ref>
== Mbido ndụ na agụmakwụkwọ ==
A mụrụ Abolarin na ọnwa Machị n'ụbọchi nke iri abụọ na atọ n'afọ 1976 na Odo-Itan, mpaghara Gọọmentị Obodo Ekiti Kwara Steeti Niajirịa .Ọ gụrụ akwụkwọ ndekọ ego na [[Federal Polytechnic, Offa]] maka Asambodo mba ya na Kwara State Polytechnic maka Higher National Diploma ya n'otu ngalaba ahụ ọ gụsịrị na 2011.<ref name=":0" /> <ref>{{Cite web|title=Kwara State House of Assembly|url=https://www.kwha.gov.ng/KWHA/Pages/_Gabriel|accessdate=2024-12-26|work=www.kwha.gov.ng|archivedate=26 February 2024|archiveurl=https://web.archive.org/web/20240226080219/https://www.kwha.gov.ng/KWHA/Pages/_Gabriel}}</ref>
== Ọrụ ==
Abolarin bụ onye azụmahịa nwere ahụmihe n'ịzụ ahịa na ire ere, ọkachasị na koko. Tupu ọ banye n'ọchịchị, ọ nọ n'ọkwa dịka onye isi mmepụta ihe na Akinniyi Produce Nigeria Ltd. na Idanre, Ondo Steeti, site n'afọ 1997 ruo afọ 2002. N'afọ 2019, o sonyere ma merie ntuli aka dị ka onye otu nke Nzụkọ nke iri na itoolu na Kwara Steeti n'okpuru ikpo okwu All Progressive Congress ma merie nhọpụta ya ọzọ na ntuli aka 2023 iji nọchite anya ụlọomebe iwu nke Ekiti na Nzukọ nke iri n'ụlọ Nzukọ nke Kware Steeti. <ref name=":0" /> <ref name=":1" />
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
[[Otú:Mmadụ ndi di ndụ]]
[[Otú:Ndị ndọrọ ndọrọ ọchịchị Naijiria]]
[[Otú:Ndị amụrụ n'afọ 1976]]
3xjo9i3c0s1x5p0f3f7pebumcm7euo9
E wepụrụ Ganiyu Gabriel
0
77135
670449
2026-06-29T18:40:19Z
Anastesia chi
23720
Anastesia chi moved page [[E wepụrụ Ganiyu Gabriel]] to [[Abolarin Ganiyu Gabriel]]: Misspelled title
670449
wikitext
text/x-wiki
#KÚFÙ [[Abolarin Ganiyu Gabriel]]
kmci8jyqq2iovot1huxw8ilbfrti0da
Shehu Saleh Rijau
0
77136
670485
2026-06-29T21:23:08Z
Ginikanwachimamkpa
61353
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1349768248|Shehu Saleh Rijau]]"
670485
wikitext
text/x-wiki
{{Infobox officeholder
| name = Shehu Saleh Rijau
| office = Federal Representative
| constituency = [[Magama]]/[[Rijau]]
| occupation = Politician
| party = [[All Progressives Congress]] (APC)
}}
'''Shehu Saleh Rijau''' bụ onye ndọrọ ndọrọ Naijiria. Ọ bụ onye otu nke atọ na-anya anya Magama / Rijau Federal Constituency nke Niger State. A nsogbu ya n'okpuru ikpo okwu nke All Progressives Congress (APC) na 10th National Assembly<ref>{{Cite news|author=Dennis|first=Priscilla|date=2023-09-01|title=National Assembly Tribunal upholds elections of Shehu Sale, Mahmud Abdullahi in Niger|url=https://dailypost.ng/2023/09/01/national-assembly-tribunal-upholds-elections-of-shehu-sale-mahmud-abdullahi-in-niger/|accessdate=2025-01-27|work=[[Daily Post (Nigeria)|Daily Post]]|language=en-US}}</ref><ref>{{Cite news|title=APGA candidate Shehu Saleh wins seat in Niger, first outside of South East|url=https://pmnewsnigeria.com/2021/02/07/apga-candidate-shehu-saleh-wins-seat-in-niger-first-outside-of-south-east/|accessdate=2025-01-27|language=en-US|work=[[P.M. News]]}}</ref>
== Edemsibia ==
{{Reflist}}
[[Otú:Mmadụ ndi di ndụ]]
s4gbqnkn1gm1igaijkp29zovw0f1e3n
Bolaji Robert
0
77137
670486
2026-06-29T21:29:18Z
Ginikanwachimamkpa
61353
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1359257425|Bolaji Robert]]"
670486
wikitext
text/x-wiki
<templatestyles src="Module:Message box/ambox.css"></templatestyles>'''Bolaji Kayode Robert''' bụ onye ọchụnta ego na onye ọkụ ndị Naijiria, ma na-eje ozi ugbu a dị ka onye kọmishọna na Lagos State, Naijiria.
Orụrụ orụ́ ka Onye Isi Oche Nke Oto-Awori Local Council Development Area Nke Lagos State N’etiti Afọ 2011 na 2015
Ị na-Eje Ozi Ọgbu a DỊ KA Onye Isi Nke Gbamentị Ime Ọbọdo Na Ihe Omume Ọbọ Nke Lagos Steeti, Ịkwá Ọhụ NỌỌ NA YA KEMBER 2023 MGBE GỊVANỌ NKE NKE LAGOS STEETI HEREPỤTARA YA.<ref>{{Cite web|title=Official Lagos State Website {{!}} The best place to find government services and information|url=https://lagosstate.gov.ng/government/elected_officials|accessdate=2025-12-16|work=lagosstate.gov.ng}}</ref>
E nyere bolaji Robert Ihe Nrite Nke Onye Isi Oche Nke Gọmentị Obodo Maka Afọ. <ref>{{Cite news|author=Nation|first=The|date=2013-04-16|title=Industrialist hails council chief|url=https://thenationonlineng.net/industrialist-hails-council-chief/|accessdate=2025-12-16|work=[[The Nation (Nigeria)|The Nation]]|language=en-US}}</ref>
== Edemsibia ==
{{Reflist}}
[[Otú:Mmadụ ndi di ndụ]]
1yinkws2tsf4jmklorhygctr9d05yei
Ọdọ Mmiri Ahémé
0
77138
670487
2026-06-30T05:41:58Z
Aluta editor
62822
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1186970870|Lake Ahémé]]"
670487
wikitext
text/x-wiki
'''Ọdọ Mmiri Ahémé''' bụ ọdọ mmiri nke abụọ kachasị ukwuu na Benin, nke nwere obosara nke 78 square kilomita (30 sq mi) n'oge ọkọchị nke na-agbasa ruo 100 square kilomita (39 sq mi) n'oge mmiri ozuzo.. Ọdọ mmiri ahụ dị kilomita 24 (15 mi) n'ogologo ma nwee nkezi obosara nke kilomita 3.6 (2.2 mi). <ref name="wetlands">{{Cite book|url=https://books.google.com/books?id=VLjafeXa3gMC&pg=PA305|title=A directory of African wetlands|first=R. H.|author=Hughes|publisher=IUCN|year=1992|isbn=2-88032-949-3}}</ref> Osimiri Couffo na-abanye n'ebe ugwu nke ọdọ mmiri ahụ, ebe ọwa Aho dị kilomita 10 jikọtara njedebe ndịda ọdọ mmiri ahụ na Grand-Popo Lagoon na ụsọ oké osimiri [[Òrìmìlì Atlantic|Atlantic]].<ref name="conference" /> Ọwa mmiri a na-asọga n'ebe ndịda n'oge udu mmiri mana ọ na-agbanwe ụzọ n'oge ọkọchị, nke na-eme ka nnu dị n'akụkụ ndịda nke ọdọ mmiri ahụ mụbaa.<ref name="conference" />
Ndị Pedah na ndị Ayizo bụ agbụrụ abụọ bi n'ikperé mmiri nke Ọdọ Mmiri Ahémé . <ref>{{Cite book|author=Houngnikpo|first=Mathurin C.|date=2013|title=Historical Dictionary of Benin|url=https://books.google.com/books?id=0yGPTsRubWEC|publisher=Rowman & Littlefield|isbn=978-0810871717|accessdate=28 July 2016}}</ref> Ịkụ azụ na ọrụ ugbo bụ isi ọrụ akụ na ụba n'ógbè ahụ. <ref name="conference" /><ref name="wetlands">{{Cite book|url=https://books.google.com/books?id=VLjafeXa3gMC&pg=PA305|title=A directory of African wetlands|first=R. H.|author=Hughes|publisher=IUCN|year=1992|isbn=2-88032-949-3}}<cite class="citation book cs1" data-ve-ignore="" id="CITEREFHughesHughes1992">Hughes, R. H.; Hughes, J. S. (1992). [https://books.google.com/books?id=VLjafeXa3gMC&pg=PA305 ''A directory of African wetlands'']. IUCN. [[ISBN]] [[Special:BookSources/2-88032-949-3|<bdi>2-88032-949-3</bdi>]].</cite></ref> N'ime ọdọ mmiri ahụ, edeela ụdị azụ iri asaa na otu. <ref name="ramsar">{{Cite web|url=https://rsis.ramsar.org/ris/1017|title=Basse Vallée du Couffo, Lagune Côtiere, Chenal Aho, Lac Ahémé|accessdate=28 July 2016}}</ref><ref>{{Cite web|url=http://www.lacaheme.com/spip.php?article1|title=Présentation|accessdate=28 July 2016|archivedate=18 August 2016|archiveurl=https://web.archive.org/web/20160818112803/http://www.lacaheme.com/spip.php?article1}}</ref>
A kpọpụtala ebe dị hekta 47,500 (eka 117,000) nke nwere ala mmiri nke Couffo dị ala, Ọdọ Mmiri Ahémé, Ọwa Aho na ọdọ mmiri dị n'akụkụ ya dị ka ebe Ramsar. <ref name="ramsar">{{Cite web|url=https://rsis.ramsar.org/ris/1017|title=Basse Vallée du Couffo, Lagune Côtiere, Chenal Aho, Lac Ahémé|accessdate=28 July 2016}}<cite class="citation web cs1" data-ve-ignore="">[https://rsis.ramsar.org/ris/1017 "Basse Vallée du Couffo, Lagune Côtiere, Chenal Aho, Lac Ahémé"]<span class="reference-accessdate">. Retrieved <span class="nowrap">28 July</span> 2016</span>.</cite></ref> na Ebe Nnụnụ Dị Mkpa. <ref>{{Cite web|url=http://www.birdlife.org/datazone/userfiles/file/IBAs/AfricaCntryPDFs/Benin.pdf|title=Benin|publisher=BirdLife International|accessdate=28 July 2016}}</ref>
== Edensibia ==
{{Reflist}}{{DEFAULTSORT:Lake Aheme}}
o27bxtgnoik4bz7nrcjynpsh3q00a7t
670488
670487
2026-06-30T05:45:00Z
Aluta editor
62822
670488
wikitext
text/x-wiki
'''Ọdọ Mmiri Ahémé''' bụ ọdọ mmiri nke abụọ kachasị ukwuu na Benin, nke nwere obosara nke 78 square kilomita (30 sq mi) n'oge ọkọchị nke na-agbasa ruo 100 square kilomita (39 sq mi) n'oge mmiri ozuzo.. Ọdọ mmiri ahụ dị kilomita 24 (15 mi) n'ogologo ma nwee nkezi obosara nke kilomita 3.6 (2.2 mi). <ref name="wetlands" /> Osimiri Couffo na-abanye n'ebe ugwu nke ọdọ mmiri ahụ, ebe ọwa Aho dị kilomita 10 jikọtara njedebe ndịda ọdọ mmiri ahụ na Grand-Popo Lagoon na ụsọ oké osimiri [[Òrìmìlì Atlantic|Atlantic]].<ref name="conference" /> Ọwa mmiri a na-asọga n'ebe ndịda n'oge udu mmiri mana ọ na-agbanwe ụzọ n'oge ọkọchị, nke na-eme ka nnu dị n'akụkụ ndịda nke ọdọ mmiri ahụ mụbaa.<ref name="conference" />
Ndị Pedah na ndị Ayizo bụ agbụrụ abụọ bi n'ikperé mmiri nke Ọdọ Mmiri Ahémé . <ref>{{Cite book|author=Houngnikpo|first=Mathurin C.|date=2013|title=Historical Dictionary of Benin|url=https://books.google.com/books?id=0yGPTsRubWEC|publisher=Rowman & Littlefield|isbn=978-0810871717|accessdate=28 July 2016}}</ref> Ịkụ azụ na ọrụ ugbo bụ isi ọrụ akụ na ụba n'ógbè ahụ. <ref name="conference" /><ref name="wetlands">{{Cite book|url=https://books.google.com/books?id=VLjafeXa3gMC&pg=PA305|title=A directory of African wetlands|first=R. H.|author=Hughes|publisher=IUCN|year=1992|isbn=2-88032-949-3}}<cite class="citation book cs1" data-ve-ignore="" id="CITEREFHughesHughes1992">Hughes, R. H.; Hughes, J. S. (1992). [https://books.google.com/books?id=VLjafeXa3gMC&pg=PA305 ''A directory of African wetlands'']. IUCN. [[ISBN]] [[Special:BookSources/2-88032-949-3|<bdi>2-88032-949-3</bdi>]].</cite></ref> N'ime ọdọ mmiri ahụ, edeela ụdị azụ iri asaa na otu. <ref name="ramsar" />{<ref>{{Cite web|url=http://www.lacaheme.com/spip.php?article1|title=Présentation|accessdate=28 July 2016|archivedate=18 August 2016|archiveurl=https://web.archive.org/web/20160818112803/http://www.lacaheme.com/spip.php?article1}}</ref>
A kpọpụtala ebe dị hekta 47,500 (eka 117,000) nke nwere ala mmiri nke Couffo dị ala, Ọdọ Mmiri Ahémé, Ọwa Aho na ọdọ mmiri dị n'akụkụ ya dị ka ebe Ramsar. <ref name="ramsar">{{Cite web|url=https://rsis.ramsar.org/ris/1017|title=Basse Vallée du Couffo, Lagune Côtiere, Chenal Aho, Lac Ahémé|accessdate=28 July 2016}}<cite class="citation web cs1" data-ve-ignore="">[https://rsis.ramsar.org/ris/1017 "Basse Vallée du Couffo, Lagune Côtiere, Chenal Aho, Lac Ahémé"]<span class="reference-accessdate">. Retrieved <span class="nowrap">28 July</span> 2016</span>.</cite></ref> na Ebe Nnụnụ Dị Mkpa. <ref>{{Cite web|url=http://www.birdlife.org/datazone/userfiles/file/IBAs/AfricaCntryPDFs/Benin.pdf|title=Benin|publisher=BirdLife International|accessdate=28 July 2016}}</ref>
== Edensibia ==
{{Reflist}}{{DEFAULTSORT:Lake Aheme}}
i3hl5dgzuc9skf25k7b5a2cx7v3fmv0
670489
670488
2026-06-30T05:50:44Z
Aluta editor
62822
fixed refference with invalid ref tag
670489
wikitext
text/x-wiki
'''Ọdọ Mmiri Ahémé''' bụ ọdọ mmiri nke abụọ kachasị ukwuu na Benin, nke nwere obosara nke 78 square kilomita (30 sq mi) n'oge ọkọchị nke na-agbasa ruo 100 square kilomita (39 sq mi) n'oge mmiri ozuzo.. Ọdọ mmiri ahụ dị kilomita 24 (15 mi) n'ogologo ma nwee nkezi obosara nke kilomita 3.6 (2.2 mi). <ref name="wetlands" /> Osimiri Couffo na-abanye n'ebe ugwu nke ọdọ mmiri ahụ, ebe ọwa Aho dị kilomita 10 jikọtara njedebe ndịda ọdọ mmiri ahụ na Grand-Popo Lagoon na ụsọ oké osimiri [[Òrìmìlì Atlantic|Atlantic]].<ref name=conference>{{cite conference |url=https://dlc.dlib.indiana.edu/dlc/handle/10535/1339 |title=Governing Local Commons: What Can be Learned from the Failures of Lake Aheme's Institutions in Benin? |last1=Dangbégnon |first1=Constant |date=2000 |location=[[Bloomington, Indiana]] |conference=Eighth Biennial Conference of the International Association for the Study of Common Property}}</ref> Ọwa mmiri a na-asọga n'ebe ndịda n'oge udu mmiri mana ọ na-agbanwe ụzọ n'oge ọkọchị, nke na-eme ka nnu dị n'akụkụ ndịda nke ọdọ mmiri ahụ mụbaa.<ref name="conference" />
Ndị Pedah na ndị Ayizo bụ agbụrụ abụọ bi n'ikperé mmiri nke Ọdọ Mmiri Ahémé . <ref>{{Cite book|author=Houngnikpo|first=Mathurin C.|date=2013|title=Historical Dictionary of Benin|url=https://books.google.com/books?id=0yGPTsRubWEC|publisher=Rowman & Littlefield|isbn=978-0810871717|accessdate=28 July 2016}}</ref> Ịkụ azụ na ọrụ ugbo bụ isi ọrụ akụ na ụba n'ógbè ahụ. <ref name="conference" /><ref name="wetlands">{{Cite book|url=https://books.google.com/books?id=VLjafeXa3gMC&pg=PA305|title=A directory of African wetlands|first=R. H.|author=Hughes|publisher=IUCN|year=1992|isbn=2-88032-949-3}}<cite class="citation book cs1" data-ve-ignore="" id="CITEREFHughesHughes1992">Hughes, R. H.; Hughes, J. S. (1992). [https://books.google.com/books?id=VLjafeXa3gMC&pg=PA305 ''A directory of African wetlands'']. IUCN. [[ISBN]] [[Special:BookSources/2-88032-949-3|<bdi>2-88032-949-3</bdi>]].</cite></ref> N'ime ọdọ mmiri ahụ, edeela ụdị azụ iri asaa na otu. <ref name="ramsar" />{<ref>{{Cite web|url=http://www.lacaheme.com/spip.php?article1|title=Présentation|accessdate=28 July 2016|archivedate=18 August 2016|archiveurl=https://web.archive.org/web/20160818112803/http://www.lacaheme.com/spip.php?article1}}</ref>
A kpọpụtala ebe dị hekta 47,500 (eka 117,000) nke nwere ala mmiri nke Couffo dị ala, Ọdọ Mmiri Ahémé, Ọwa Aho na ọdọ mmiri dị n'akụkụ ya dị ka ebe Ramsar. <ref name="ramsar">{{Cite web|url=https://rsis.ramsar.org/ris/1017|title=Basse Vallée du Couffo, Lagune Côtiere, Chenal Aho, Lac Ahémé|accessdate=28 July 2016}}<cite class="citation web cs1" data-ve-ignore="">[https://rsis.ramsar.org/ris/1017 "Basse Vallée du Couffo, Lagune Côtiere, Chenal Aho, Lac Ahémé"]<span class="reference-accessdate">. Retrieved <span class="nowrap">28 July</span> 2016</span>.</cite></ref> na Ebe Nnụnụ Dị Mkpa. <ref>{{Cite web|url=http://www.birdlife.org/datazone/userfiles/file/IBAs/AfricaCntryPDFs/Benin.pdf|title=Benin|publisher=BirdLife International|accessdate=28 July 2016}}</ref>
== Edensibia ==
{{Reflist}}{{DEFAULTSORT:Lake Aheme}}
kil8iqey90axcvh3rcny9lckf642859
Osimiri Soummam
0
77139
670490
2026-06-30T06:44:11Z
Aluta editor
62822
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1360282948|Soummam River]]"
670490
wikitext
text/x-wiki
{| class="infobox"
! colspan="2" class="infobox-above" style="background-color: #CEDEFF;color: #202122;" |Soummam
|-
| colspan="2" class="infobox-image" |[[File:Les_points_blancs_sont_des_poissons_morts.jpg|frameless]]
|-
| colspan="2" class="infobox-image" |[[File:Soummam_Basin_OSM.png|250x250px]]
|-
| colspan="2" class="infobox-image" |<mapframe zoom="6" frameless="1" align="center" height="200" latitude="36.7294" longitude="5.0764" width="250">[
{"properties":{"title":"Soummam River","fill-opacity":0.1,"stroke":"#0000ff","stroke-width":2,"fill":"#606060"},"type":"ExternalData","service":"geoshape","ids":"Q3491757"},
{"properties":{"stroke-width":5,"stroke":"#0000ff","title":"Soummam River"},"type":"ExternalData","service":"geoline","ids":"Q3491757"}
]</mapframe><div class="infobox-caption"></div>
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Ebe
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Mba
| class="infobox-data" |[[Algeria]]
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |[[Provinces of Algeria|Ógbè]]
| class="infobox-data" |[[Béjaïa Province|Bejaia]]
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Obodo
| class="infobox-data" |[[Akbou|Akbu]]
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Àgwà ya
|- class="infobox-hiddenrow" style="display:none;"
| colspan="2" class="infobox-full-data" |<templatestyles src="Module:Infobox/styles.css"></templatestyles>
|-
! class="infobox-label" scope="row" |Ebe e si nweta ya
| class="infobox-data" |
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<span style="font-weight:normal">• ebe </span>
| class="infobox-data" |Akbu, [[Algeria]]
|-
! class="infobox-label" scope="row" |Ọnụ
| class="infobox-data" |Mediterenian
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• ebe </div>
| class="infobox-data" |Bejaia
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• akara </div>
| class="infobox-data" |<templatestyles src="Module:Coordinates/styles.css"></templatestyles><span class="geo-inline"><span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Soummam_River¶ms=36.7294_N_5.0764_E_type:river_region:DZ <span class="geo-default"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">36°43′46′′N</span> <span class="longitude">5°04′35′′E</span></span></span><span class="geo-multi-punct">/__ibo____ibo____ibo__ Ọ bụ ezie na ọ bụ</span><span class="geo-nondefault"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">36.7294°N 5.0764°E</span><span style="display:none"> / <span class="geo">36.7294; 5.0764</span></span></span>]</span></span><indicator name="coordinates"><span id="coordinates">[[Geographic coordinate system|Coordinates]]: <templatestyles src="Module:Coordinates/styles.css"></templatestyles><span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Soummam_River¶ms=36.7294_N_5.0764_E_type:river_region:DZ <span class="geo-default"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">36°43′46″N</span> <span class="longitude">5°04′35″E</span></span></span><span class="geo-multi-punct"> / </span><span class="geo-nondefault"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">36.7294°N 5.0764°E</span><span style="display:none"> / <span class="geo">36.7294; 5.0764</span></span></span>]</span>[[Category:Pages using gadget WikiMiniAtlas]]</span></indicator>
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Ogologo
| class="infobox-data" |65 kilomita
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Ihe ndị dị n'ime ala
|-
! class="infobox-label" scope="row" |Ọnọdụ nchebe
| class="infobox-data" |<templatestyles src="Module:Infobox/styles.css"></templatestyles>
|- class="mergedrow"
! colspan="2" class="infobox-header" |<templatestyles src="Module:Infobox/styles.css"></templatestyles><div style="line-height:1.5;text-align:center;border-style:solid;border-width:4px;border-color:#8DE3D2">Ala Mmiri Ramsar</div>
|- class="mergedrow"
! class="infobox-label" scope="row" |<div style="display: inline-block; line-height: 1.2em; padding: .1em 0; ">Aha gọọmentị</div>
| class="infobox-data" |Ndagwurugwu nke Oued Soummam
|- class="mergedrow"
! class="infobox-label" scope="row" |Ndị a họpụtara
| class="infobox-data" |18 Disemba 2009
|- class="mergedrow"
! class="infobox-label" scope="row" |Ihe odide no.
| class="infobox-data" |1898
|}
The '''Soummam River''' (Kabyle: Asif asemmam), bụ osimiri dị n'ebe ugwu Algeria, nke sitere na njikọta nke Osimiri Sahel na Osimiri Bou Sellam dị nso na Akbou ma na-asọba na Mediterenian na Béjaïa.
== Nkọwa ==
Mmiri ndị na-erute oké osimiri n'ebe a bụ Ugwu Ain Oulmane, ndịda Sétif, Ugwu Dirah, ndịda Bouïra, na ọdịda anyanwụ Djurdjura. N'eziokwu, ọdịdị ala nke mpaghara ahụ na-etinye isi iyi ndịda nke Soummam n'ókè nke mpaghara kpọrọ nkụ nke a na-ahụkarị na ihu igwe kọntinent, ebe isi iyi kacha nso dị na mpaghara ndị dị mmiri mmiri na ihu igwe dị jụụ. Soummam bụ netwọk mmiri dị oke ma na-enye nke ọma, ọkachasị n'akụkụ ya dị na Atlas Tellian: Djurdjura, Babors na Bibans. Mmiri mmiri ya kpuchiri mpaghara nke 9,200 km2 gbasaa na wilayas anọ: Bouïra, Bordj Bou Arréridj, Sétif na Béjaïa. Site na Cheliff, Tafna na Rhummel, Soummam bụ otu n'ime osimiri kachasị ukwuu na Algeria.
Oued Soummam na-agbanye mmiri n'ebe dị 9,<sup>2</sup> km2 nke e kewara dị ka ndị a:
* Mmiri nke Osimiri Oued Sahel site na Sour El-Ghozlane (wilaya nke Bouïra) ruo 2" href="./Akbou" id="mwOA" rel="mw:WikiLink" title="Akbou">Akbu: 3,750 km2;
* Mmiri nke Osimiri Oued Bou Sellam site n'ebe ugwu Sétif ruo Akbou: 4,500 km<sup>2</sup>;
* Basin nke Soummam, na-ekwu okwu n'ụzọ siri ike, naanị site na Akbou ruo n'oké osimiri: 950 km<sup>2</sup>.
== Ndagwurugwu Osimiri ==
A na-akpọ ndagwurugwu Soummam aha osimiri nke gafere ya. Ọ dị na Kabylia, mpaghara dị n'ebe ugwu Algeria, na-ebi n'Okporo ụzọ sara mbara na wilaya nke Béjaïa. Ụgbọ okporo ígwè Béni Mansour-Bejaïa bụ ụzọ ụgbọ okporo ígwè mpaghara nke na-esochi ndagwurugwu osimiri a ma jikọta ya na netwọk ụgbọ okporo ígwè mba na obodo Boudjellil.
N'etiti Akfadou-Gouraya dị n'ebe ugwu, usoro Biban (ókèala akụkọ ihe mere eme nke Ait Abbas) na ndịda ọwụwa anyanwụ na ndagwurugwu Sahel-Djurdjura (obodo Tazmalt) na ndịanda ọdịda anyanwụ. Ndagwurugwu Soummam, nke sitere na Akbou ruo Béjaia, na-apụta dị ka ụzọ dị warara nke dị kilomita 65 (n'ime wilaya nke Béjaïa) n'obosara kachasị nke kilomita 4 na El Kseur.
Ndagwurugwu ndị dị n'ebe ndịda, bụ ndagwurugwu dị nro ma ya mere mepere emepe. A na-ekewa mpaghara a n'ime obere pedological units: flysch dị na Akbou, sandstone dị na El Kseur.
Obodo nta nke Amizour, El Kseur, Ouzellaguen na Timezrit nwere nnukwu ebe dabara adaba maka ihe ọkụkụ bara ọgaranya dị ka ịkọ ubi ahịa na ịzụ mkpụrụ osisi.
== Mmiri na-amụ banyere mmiri ==
Ndagwurugwu Soummam na-agbanye mmiri site na netwọk mmiri, nke nwere ọtụtụ osimiri na-adịgide adịgide na nke na-agbanwe agbanwe, nke Oued Soummam nọchitere anya onye isi na-anakọta. Dabere na data hydrological anakọtara n'etiti 1961 na 1976, nkezi nke Soummam bụ 25 m<sup>3</sup> / s. N'oge idei mmiri nke afọ 1970, ọnụ ọgụgụ kachasị elu e dekọrọ bụ 115.9 m<sup>3</sup> /s na obere mmiri (n'oge ọnwa July na August) dabara na 0.6 m<sup>3</sup> / S. N'ezie, mmiri ndị a na-egosi nnukwu mgbanwe n'etiti afọ, ya mere oge.
N'ọnụ ya, Soummam nwere onyinye nke 700,106 m<sup>3</sup> / afọ nke mmiri nke ọ na-agbasa na Oké Osimiri Mediterenian (Visiterv, 1987). Isi ntinye na-abịa site na ndị na-akwado n'akụkụ aka ekpe, na nkezi nke 68.106 m<sup>3</sup> / afọ, na ndị na na-akwado ya n'akụkụ Aka nri na-ewepụta nkezi nke 25 × 106 m<sup>3</sup> /afọ. Ndị na-esite n'akụkụ aka ekpe dị na ndagwurugwu ndị mmiri ozuzo na snow na-agba, na-enyere ha aka ịbawanye mmiri karịa ndagwurugwumm nke ndị na-esonye n'akụkụ nri.
== Aha ya ==
Okwu Soummam bụ mgbagwoju anya nke okwu kabyle "assemmam", nke pụtara "asidi". Pliny Onye Ukwu kwuru na Ptolemy kpọrọ Soummam "Nasava".
== Edensibịa ==
{{Reflist}}
[[Otú:Short description is different from Wikidata]]
[[Otú:Articles with short description]]
tktih3y25nne4nsuhx9i8ptd4w1o8vb
670491
670490
2026-06-30T06:47:50Z
Aluta editor
62822
fixed refference with ref tag
670491
wikitext
text/x-wiki
{| class="infobox"
! colspan="2" class="infobox-above" style="background-color: #CEDEFF;color: #202122;" |Soummam
|-
| colspan="2" class="infobox-image" |[[File:Les_points_blancs_sont_des_poissons_morts.jpg|frameless]]
|-
| colspan="2" class="infobox-image" |[[File:Soummam_Basin_OSM.png|250x250px]]
|-
| colspan="2" class="infobox-image" |<mapframe zoom="6" frameless="1" align="center" height="200" latitude="36.7294" longitude="5.0764" width="250">[
{"properties":{"title":"Soummam River","fill-opacity":0.1,"stroke":"#0000ff","stroke-width":2,"fill":"#606060"},"type":"ExternalData","service":"geoshape","ids":"Q3491757"},
{"properties":{"stroke-width":5,"stroke":"#0000ff","title":"Soummam River"},"type":"ExternalData","service":"geoline","ids":"Q3491757"}
]</mapframe><div class="infobox-caption"></div>
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Ebe
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Mba
| class="infobox-data" |[[Algeria]]
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |[[Provinces of Algeria|Ógbè]]
| class="infobox-data" |[[Béjaïa Province|Bejaia]]
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Obodo
| class="infobox-data" |[[Akbou|Akbu]]
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Àgwà ya
|- class="infobox-hiddenrow" style="display:none;"
| colspan="2" class="infobox-full-data" |<templatestyles src="Module:Infobox/styles.css"></templatestyles>
|-
! class="infobox-label" scope="row" |Ebe e si nweta ya
| class="infobox-data" |
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<span style="font-weight:normal">• ebe </span>
| class="infobox-data" |Akbu, [[Algeria]]
|-
! class="infobox-label" scope="row" |Ọnụ
| class="infobox-data" |Mediterenian
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• ebe </div>
| class="infobox-data" |Bejaia
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• akara </div>
| class="infobox-data" |<templatestyles src="Module:Coordinates/styles.css"></templatestyles><span class="geo-inline"><span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Soummam_River¶ms=36.7294_N_5.0764_E_type:river_region:DZ <span class="geo-default"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">36°43′46′′N</span> <span class="longitude">5°04′35′′E</span></span></span><span class="geo-multi-punct">/__ibo____ibo____ibo__ Ọ bụ ezie na ọ bụ</span><span class="geo-nondefault"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">36.7294°N 5.0764°E</span><span style="display:none"> / <span class="geo">36.7294; 5.0764</span></span></span>]</span></span><indicator name="coordinates"><span id="coordinates">[[Geographic coordinate system|Coordinates]]: <templatestyles src="Module:Coordinates/styles.css"></templatestyles><span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Soummam_River¶ms=36.7294_N_5.0764_E_type:river_region:DZ <span class="geo-default"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">36°43′46″N</span> <span class="longitude">5°04′35″E</span></span></span><span class="geo-multi-punct"> / </span><span class="geo-nondefault"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">36.7294°N 5.0764°E</span><span style="display:none"> / <span class="geo">36.7294; 5.0764</span></span></span>]</span>[[Category:Pages using gadget WikiMiniAtlas]]</span></indicator>
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Ogologo
| class="infobox-data" |65 kilomita
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Ihe ndị dị n'ime ala
|-
! class="infobox-label" scope="row" |Ọnọdụ nchebe
| class="infobox-data" |<templatestyles src="Module:Infobox/styles.css"></templatestyles>
|- class="mergedrow"
! colspan="2" class="infobox-header" |<templatestyles src="Module:Infobox/styles.css"></templatestyles><div style="line-height:1.5;text-align:center;border-style:solid;border-width:4px;border-color:#8DE3D2">Ala Mmiri Ramsar</div>
|- class="mergedrow"
! class="infobox-label" scope="row" |<div style="display: inline-block; line-height: 1.2em; padding: .1em 0; ">Aha gọọmentị</div>
| class="infobox-data" |Ndagwurugwu nke Oued Soummam
|- class="mergedrow"
! class="infobox-label" scope="row" |Ndị a họpụtara
| class="infobox-data" |18 Disemba 2009
|- class="mergedrow"
! class="infobox-label" scope="row" |Ihe odide no.
| class="infobox-data" |1898
|}
The '''Soummam River''' (Kabyle: Asif asemmam), bụ osimiri dị n'ebe ugwu Algeria, nke sitere na njikọta nke Osimiri Sahel na Osimiri Bou Sellam dị nso na Akbou ma na-asọba na Mediterenian na Béjaïa.
== Nkọwa ==
Mmiri ndị na-erute oké osimiri n'ebe a bụ Ugwu Ain Oulmane, ndịda Sétif, Ugwu Dirah, ndịda Bouïra, na ọdịda anyanwụ Djurdjura. N'eziokwu, ọdịdị ala nke mpaghara ahụ na-etinye isi iyi ndịda nke Soummam n'ókè nke mpaghara kpọrọ nkụ nke a na-ahụkarị na ihu igwe kọntinent, ebe isi iyi kacha nso dị na mpaghara ndị dị mmiri mmiri na ihu igwe dị jụụ. Soummam bụ netwọk mmiri dị oke ma na-enye nke ọma, ọkachasị n'akụkụ ya dị na Atlas Tellian: Djurdjura, Babors na Bibans. Mmiri mmiri ya kpuchiri mpaghara nke 9,200 km2 gbasaa na wilayas anọ: Bouïra, Bordj Bou Arréridj, Sétif na Béjaïa. Site na Cheliff, Tafna na Rhummel, Soummam bụ otu n'ime osimiri kachasị ukwuu na Algeria.
Oued Soummam na-agbanye mmiri n'ebe dị 9,<sup>2</sup> km2 nke e kewara dị ka ndị a:
* Mmiri nke Osimiri Oued Sahel site na Sour El-Ghozlane (wilaya nke Bouïra) ruo 2" href="./Akbou" id="mwOA" rel="mw:WikiLink" title="Akbou">Akbu: 3,750 km2;
* Mmiri nke Osimiri Oued Bou Sellam site n'ebe ugwu Sétif ruo Akbou: 4,500 km<sup>2</sup>;
* Basin nke Soummam, na-ekwu okwu n'ụzọ siri ike, naanị site na Akbou ruo n'oké osimiri: 950 km<sup>2</sup>.
== Ndagwurugwu Osimiri ==
A na-akpọ ndagwurugwu Soummam aha osimiri nke gafere ya. Ọ dị na Kabylia, mpaghara dị n'ebe ugwu Algeria, na-ebi n'Okporo ụzọ sara mbara na wilaya nke Béjaïa. Ụgbọ okporo ígwè Béni Mansour-Bejaïa bụ ụzọ ụgbọ okporo ígwè mpaghara nke na-esochi ndagwurugwu osimiri a ma jikọta ya na netwọk ụgbọ okporo ígwè mba na obodo Boudjellil.
N'etiti Akfadou-Gouraya dị n'ebe ugwu, usoro Biban (ókèala akụkọ ihe mere eme nke Ait Abbas) na ndịda ọwụwa anyanwụ na ndagwurugwu Sahel-Djurdjura (obodo Tazmalt) na ndịanda ọdịda anyanwụ. Ndagwurugwu Soummam, nke sitere na Akbou ruo Béjaia, na-apụta dị ka ụzọ dị warara nke dị kilomita 65 (n'ime wilaya nke Béjaïa) n'obosara kachasị nke kilomita 4 na El Kseur.
Ndagwurugwu ndị dị n'ebe ndịda, bụ ndagwurugwu dị nro ma ya mere mepere emepe. A na-ekewa mpaghara a n'ime obere pedological units: flysch dị na Akbou, sandstone dị na El Kseur.
Obodo nta nke Amizour, El Kseur, Ouzellaguen na Timezrit nwere nnukwu ebe dabara adaba maka ihe ọkụkụ bara ọgaranya dị ka ịkọ ubi ahịa na ịzụ mkpụrụ osisi.
== Mmiri na-amụ banyere mmiri ==
Ndagwurugwu Soummam na-agbanye mmiri site na netwọk mmiri, nke nwere ọtụtụ osimiri na-adịgide adịgide na nke na-agbanwe agbanwe, nke Oued Soummam nọchitere anya onye isi na-anakọta. Dabere na data hydrological anakọtara n'etiti 1961 na 1976, nkezi nke Soummam bụ 25 m<sup>3</sup> / s. N'oge idei mmiri nke afọ 1970, ọnụ ọgụgụ kachasị elu e dekọrọ bụ 115.9 m<sup>3</sup> /s na obere mmiri (n'oge ọnwa July na August) dabara na 0.6 m<sup>3</sup> / S. N'ezie, mmiri ndị a na-egosi nnukwu mgbanwe n'etiti afọ, ya mere oge.
N'ọnụ ya, Soummam nwere onyinye nke 700,106 m<sup>3</sup> / afọ nke mmiri nke ọ na-agbasa na Oké Osimiri Mediterenian (Visiterv, 1987). Isi ntinye na-abịa site na ndị na-akwado n'akụkụ aka ekpe, na nkezi nke 68.106 m<sup>3</sup> / afọ, na ndị na na-akwado ya n'akụkụ Aka nri na-ewepụta nkezi nke 25 × 106 m<sup>3</sup> /afọ. Ndị na-esite n'akụkụ aka ekpe dị na ndagwurugwu ndị mmiri ozuzo na snow na-agba, na-enyere ha aka ịbawanye mmiri karịa ndagwurugwumm nke ndị na-esonye n'akụkụ nri.
== Aha ya ==
Okwu Soummam bụ mgbagwoju anya nke okwu kabyle "assemmam", nke pụtara "asidi". Pliny Onye Ukwu kwuru na Ptolemy kpọrọ Soummam "Nasava".
<ref>{{Cite web|title=Vallée de l'oued Soummam|website=[[Ramsar Convention|Ramsar]] Sites Information Service|url=https://rsis.ramsar.org/ris/1898|accessdate=25 April 2018}}</ref>}}
<ref>[https://books.google.com/books?id=jNJcAAAAcAAJ Musee de Sculpture Antique et Moderne] consultéd 2015-08-28</ref><ref>Thomas Shaw Voyages dans plusieurs provinces de la Barbarie et du Levant, contenant des observations geographiques, physiques et philologiques sur les royaumes d'Alger et de Tunis, sur la Syrie, l'Egypte et l'Arabie pénétrée (1743)[https://books.google.com/books?id=ncAWAAAAQAAJ page]</ref><ref>Thomas Shaw, [https://books.google.com/books?id=2i8VAAAAQAAJ Voyage dans plusieurs provinces de la Barbarie et du Levant] (1743)</ref><ref>Joseph Guadet [https://books.google.com/books?id=HdDDH0JLcScC Dictionnaire universel abrégé de géographie ancienne compare] (Desray, 1820).</ref>
== Edensibịa ==
{{Reflist}}
[[Otú:Short description is different from Wikidata]]
[[Otú:Articles with short description]]
94ghtl8cabw1yhcakfwnndw71t9ra76
Sebkha nke Oran
0
77140
670492
2026-06-30T06:51:37Z
Aluta editor
62822
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1351233265|Sebkha of Oran]]"
670492
wikitext
text/x-wiki
'''Sebkha nke Oran''' bụ ọdọ nnu dị n'ime mpaghara obodo Misserghin, na mpaghara Oran, [[Algeria]].
== Ọdịdị ala ==
Sebkha nke Oran bụ ọdọ mmiri dị kilomita iri na ise na ndịda Oran na obodo Misserghin, ọ dịkwa ihe dị ka kilomita iri na abụọ site na Oké Osimiri Mediterenian. Ọ bụ ala mmiri dị mita 110, nke Murdjajo Massif na-agbakọ n'ebe ugwu na Tessala Massif na ndịda. Sebkha dị n'ala ala mmiri a, o yiri ka ọ nwere ala dị larịị mana ọ na-aga ntakịrị n'ebe ọdịda anyanwụ, ebe dị ala na mita iri asatọ n'elu oke osimiri na ebe dị elu na mita iri asatọ na abụọ. O nwere ọdịdị elliptical, ihe dịka kilomita 40 n'ogologo na ndịda ọdịda anyanwụ-n'ebe ugwu ọwụwa anyanwụ, na obosara sitere na kilomita 6 ruo 13.
Ọdọ mmiri ahụ na-esi n'akụkụ Tessala na Murdjajo Massifs na-asọpụta. Agbanyeghị, mmiri dị n'ebe a bụ nnu. Ọdọ mmiri ahụ, nke na-emepụta obere oyi akwa mmiri site na 10 ruo 30 cm dabere na mmiri ozuzo, na-akpọnwụ kpamkpam n'oge ọkọchị n'ihi oke mmiri ozuzo na oke ọkọchị nke mpaghara ahụ. Ihu igwe dị na Mediterenian nke na-anaghị akọrọ, yana mmiri ozuzo kwa afọ dị n'agbata 378 na 473 mm.
A na-eji ala ndị gbara ọdọ mmiri ahụ gburugburu maka ọrụ ugbo. Nnu si n'ọdọ mmiri ahụ nwere mmetụta na-adịghị mma na nsọtụ ndịda nke obodo Oran yana ụzọ ụgbọ elu nke Oran Airport.
A matara Sebkha nke Oran dị ka ebe Ramsar kemgbe Febụwarị 2, 2001. <ref>{{Cite web|accessdate=17 March 2015|language=en|title=Sebkha d'Oran|url=https://rsis.ramsar.org/fr/ris/1055?language=fr|work=Service d’information sur les Sites Ramsar}}</ref> Dị ka Emberger si kwuo, a na-ahazi ihu igwe dị na Es Senia dị ka ọkara mmiri ozuzo.
== Flora ==
[[Faịlụ:Sebkha_Oran.JPG|thumb|Flora na Sebkha Oran]]
Ahịhịa halophytic nke nnukwu sebkha a abụwo isiokwu nke ọtụtụ ọmụmụ sayensị miri emi. Dị ka K. Bahi si kwuo, o doro anya na "ala mmiri dị na mpaghara Oran na-egosipụta ụdị dị iche iche nke kwesịrị nchebe na nchekwa".
A na-ekpuchi mmiri ndị gbara sebkha gburugburu na ọhịa pine Aleppo, eucalyptus, cork oak, na thuja.
== Anụmanụ ==
Ọtụtụ ụdị nnụnụ na-agagharị agagharị bi na Ala mmiri nke ọdịda anyanwụ Oran. Ọdọ mmiri ahụ bụ ebe obibi nke ụdị nnụnụ abụọ dị ịrịba ama, na-akarị 1% nke mba ụwa: nnukwu flamingo na shoveler nke ugwu. Dịka ọmụmaatụ, na Febụwarị 1972, a gụrụ otu puku na narị anọ na iri ise flamingo. Dabere na nnụnụ ndị a nwere ike ịgagharị n'etiti ọdọ mmiri a, marshes nke Macta, na Sebkha nke Arzew (Johnson, na litt.).<gallery mode="packed" heights="150">
Faịlụ:Sebkha_d'Oran.PNG|link=https://fr.wikipedia.org/wiki/Fichier:Sebkha_d'Oran.PNG|Topographic map of the basin of the Sebkha of Oran.
Faịlụ:Sebkha_Oran.JPG|link=https://fr.wikipedia.org/wiki/Fichier:Sebkha_Oran.JPG|The Sebkha near Hassi El Ghella.
Faịlụ:Sebkha_D'Oran.jpg|link=https://fr.wikipedia.org/wiki/Fichier:Sebkha_D'Oran.jpg
</gallery>
== Ihe edeturu na ntụaka ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
== Hụkwa ==
* Sebkha el Melah, Béni Abbès
<templatestyles src="Module:Coordinates/styles.css"></templatestyles>{{Coor|35|32|N|0|47|W|type:waterbody_region:DZ}}
rm1ljuxqv3vl0uxa2xb0wdl33d6s6yb
670493
670492
2026-06-30T06:54:50Z
Aluta editor
62822
fixed refference with ref tag
670493
wikitext
text/x-wiki
'''Sebkha nke Oran''' bụ ọdọ nnu dị n'ime mpaghara obodo Misserghin, na mpaghara Oran, [[Algeria]].
== Ọdịdị ala ==
Sebkha nke Oran bụ ọdọ mmiri dị kilomita iri na ise na ndịda Oran na obodo Misserghin, ọ dịkwa ihe dị ka kilomita iri na abụọ site na Oké Osimiri Mediterenian. Ọ bụ ala mmiri dị mita 110, nke Murdjajo Massif na-agbakọ n'ebe ugwu na Tessala Massif na ndịda. Sebkha dị n'ala ala mmiri a, o yiri ka ọ nwere ala dị larịị mana ọ na-aga ntakịrị n'ebe ọdịda anyanwụ, ebe dị ala na mita iri asatọ n'elu oke osimiri na ebe dị elu na mita iri asatọ na abụọ. O nwere ọdịdị elliptical, ihe dịka kilomita 40 n'ogologo na ndịda ọdịda anyanwụ-n'ebe ugwu ọwụwa anyanwụ, na obosara sitere na kilomita 6 ruo 13. <ref>Nabila Boualla , ''Caractérisation et état de connaissance du bassin de la grande Sebkha d'Oran'' '', mémoire de l'université des sciences et de la technologie d'Oran, 2011, fiche 19. [http://www.memoireonline.com/10/12/6341/m_Caracterisation-et-etat-de-connaissance-du-bassin-de-la-grande-Sebkha-d-Oran19.html Accès en ligne]''</ref>
Ọdọ mmiri ahụ na-esi n'akụkụ Tessala na Murdjajo Massifs na-asọpụta. Agbanyeghị, mmiri dị n'ebe a bụ nnu. Ọdọ mmiri ahụ, nke na-emepụta obere oyi akwa mmiri site na 10 ruo 30 cm dabere na mmiri ozuzo, na-akpọnwụ kpamkpam n'oge ọkọchị n'ihi oke mmiri ozuzo na oke ọkọchị nke mpaghara ahụ. Ihu igwe dị na Mediterenian nke na-anaghị akọrọ, yana mmiri ozuzo kwa afọ dị n'agbata 378 na 473 mm.
A na-eji ala ndị gbara ọdọ mmiri ahụ gburugburu maka ọrụ ugbo. Nnu si n'ọdọ mmiri ahụ nwere mmetụta na-adịghị mma na nsọtụ ndịda nke obodo Oran yana ụzọ ụgbọ elu nke Oran Airport.
A matara Sebkha nke Oran dị ka ebe Ramsar kemgbe Febụwarị 2, 2001. <ref>{{Cite web|accessdate=17 March 2015|language=en|title=Sebkha d'Oran|url=https://rsis.ramsar.org/fr/ris/1055?language=fr|work=Service d’information sur les Sites Ramsar}}</ref> Dị ka Emberger si kwuo, a na-ahazi ihu igwe dị na Es Senia dị ka ọkara mmiri ozuzo.<ref>Emberger, L. (1942). Le projet d'une classification des climats du point de vue phytogéographique. ''Bull. Soc. Hist. nat. Toulouse'', 77 : 97-124.</ref>
== Flora ==
[[Faịlụ:Sebkha_Oran.JPG|thumb|Flora na Sebkha Oran]]
Ahịhịa halophytic nke nnukwu sebkha a abụwo isiokwu nke ọtụtụ ọmụmụ sayensị miri emi. Dị ka K. Bahi si kwuo, o doro anya na "ala mmiri dị na mpaghara Oran na-egosipụta ụdị dị iche iche nke kwesịrị nchebe na nchekwa".<ref name="Bahi">Bahi, K..(2012). Contribution à l’étude phytoécologique des zones humides de la région d’Oran. Mém. Magister, Univ. Oran, 153 p.</ref>
A na-ekpuchi mmiri ndị gbara sebkha gburugburu na ọhịa pine Aleppo, eucalyptus, cork oak, na thuja.
== Anụmanụ ==
Ọtụtụ ụdị nnụnụ na-agagharị agagharị bi na Ala mmiri nke ọdịda anyanwụ Oran. Ọdọ mmiri ahụ bụ ebe obibi nke ụdị nnụnụ abụọ dị ịrịba ama, na-akarị 1% nke mba ụwa: nnukwu flamingo na shoveler nke ugwu. Dịka ọmụmaatụ, na Febụwarị 1972, a gụrụ otu puku na narị anọ na iri ise flamingo. Dabere na nnụnụ ndị a nwere ike ịgagharị n'etiti ọdọ mmiri a, marshes nke Macta, na Sebkha nke Arzew (Johnson, na litt.).<gallery mode="packed" heights="150">
Faịlụ:Sebkha_d'Oran.PNG|link=https://fr.wikipedia.org/wiki/Fichier:Sebkha_d'Oran.PNG|Topographic map of the basin of the Sebkha of Oran.
Faịlụ:Sebkha_Oran.JPG|link=https://fr.wikipedia.org/wiki/Fichier:Sebkha_Oran.JPG|The Sebkha near Hassi El Ghella.
Faịlụ:Sebkha_D'Oran.jpg|link=https://fr.wikipedia.org/wiki/Fichier:Sebkha_D'Oran.jpg
</gallery>
== Ihe edeturu na ntụaka ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
== Hụkwa ==
* Sebkha el Melah, Béni Abbès
<templatestyles src="Module:Coordinates/styles.css"></templatestyles>{{Coor|35|32|N|0|47|W|type:waterbody_region:DZ}}
6t84bz3200eiaiavnhxxm0qbguiqjb5
Fasuwa Abayomi Johnson
0
77141
670494
2026-06-30T06:55:05Z
NiferO
20385
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1351766372|Fasuwa Abayomi Johnson]]"
670494
wikitext
text/x-wiki
<templatestyles src="Module:Message box/ambox.css"></templatestyles> <templatestyles src="Module:Infobox/styles.css"></templatestyles>
'''Fasuwa Abayomi Johnson''' nke a na-akpọkwa '''Yomi-FAJ''', bụ onye ndọrọ ndọrọ ọchịchị na onye ọchụnta ego Naijiria, onye na-eje ozi dị ka onye kọmishọna gọọmentị etiti nke na-anọchite anya Ogun Steeti na Naijiria National Population Commission. <ref name=":0">{{Cite web|author=Editorial 01|first=Premier|date=2024-03-06|title=JUST IN: THE SENATE CONFIRMS RAHEEM AND ABAYOMI, TINUBU'S NOMINEES, AS NPC COMMISSIONERS.|url=https://thepremiernews.com/just-in-the-senate-confirms-raheem-and-abayomi-tinubus-nominees-as-npc-commissioners/|accessdate=2024-10-07|work=The Premier News|language=en-US}}</ref>
== Mbido ndụ na agụmakwụkwọ ==
A mụrụ Fasuwa Abayomi Johnson na Ododeyo, Ijebu North-East, Ogun Steeti, Naịjirịa. Ọ gara St. Michael Primary School, Ododeyo maka agụmakwụkwọ praịmarị ya, wee gaa Deyo Tuwo Comprehensive High School maka agụmakọta sekọndrị ya.
Johnson gara n'ihu na agụmakwụkwọ ya dị elu na [[Mahadum Olabisi Onabanjo|Mahadum Ogun State (nke bụzi Mahadum Onabanjo, Ago Iwoye)]] , ebe ọ gụsịrị akwụkwọ na nzere na Geography na Regional Planning n'afọ 1998. N'afọ 2004, o nwetara nzere Master of Science na Geography na Mahadum Ibadan. Ọ gara n'ihu na agụmakwụkwọ ya ma n'afọ 2012 nweta [[Master nke Nchịkwa Azụmaahịa|Master of Business Administration (MBA)]] na Mahadum Ladoke Akintola, ọkachamara na ahịa. N'afọ 2020, Johnson malitere PhD ya na Geography na Environmental Management na Tai Solarin University of Education, na-elekwasị anya na Climate Change na River Basin Management.<ref>{{Cite web|author=hamzat|date=2018-08-30|title="I'm In Politics To Spread Joy" ...Ogun Assembly Hopeful, FAJ|url=https://globalexcellenceonline.com/im-in-politics-to-spread-joy-ogun-assembly-hopeful-faj/|accessdate=2024-10-07|work=Global Excellence Online|language=en-US}}</ref> nke o mechiri n'afọ 2024.
== Ọrụ ==
=== Ọrụ ụlọ ọrụ ===
Johnson malitere ọrụ ọkachamara ya na Ọrụ ụlọ ọrụ, na-arụ ọrụ na ndụmọdụ, ngwa ngwa ndị ahịa (FMCG), na ngwá eletrọniki.<ref name=":1">{{Cite web|author=admin|date=2018-08-29|title=WHY I AM LEAVING MY BUSINESS FOR POLITICS – Fasuwa Abayomi Johnson|url=https://www.societyreporters.com/why-i-am-leaving-my-business-for-politics-fasuwa-abayomi-johnson/|accessdate=2024-10-07|work=SocietyReporters {{!}} Welcome to SocietyReporters.com ...News as it happens!!!|language=en-US}}</ref>
Ọ malitere ọrụ ya na Akintola Williams Deloitte n'afọ 2003, ụlọ ọrụ ndụmọdụ, tupu ọ gaa n'ụlọ ọrụ Nigerian Bottling Company, ebe o tinyere aka n'ahịa na ire ngwaahịa Coca-Cola. Mgbe e mesịrị, ọ sonyeere FrieslandCampina, ebe ọ jere ozi dị ka Onye njikwa ahịa dị elu maka ngwaahịa mmiri ara ehi Peak nke ụlọ ọrụ ahụ. Ọ na-arụkwa ọrụ dị ka Onye njikwa ahịa mba maka Royal Philips Netherlands, ọkwa o ji site na afọ 2013 ruo afọ 2018.<ref name=":1">{{Cite web|author=admin|date=2018-08-29|title=WHY I AM LEAVING MY BUSINESS FOR POLITICS – Fasuwa Abayomi Johnson|url=https://www.societyreporters.com/why-i-am-leaving-my-business-for-politics-fasuwa-abayomi-johnson/|accessdate=2024-10-07|work=SocietyReporters {{!}} Welcome to SocietyReporters.com ...News as it happens!!!|language=en-US}}<cite class="citation web cs1" data-ve-ignore="" id="CITEREFadmin2018">admin (2018-08-29). [https://www.societyreporters.com/why-i-am-leaving-my-business-for-politics-fasuwa-abayomi-johnson/ "WHY I AM LEAVING MY BUSINESS FOR POLITICS – Fasuwa Abayomi Johnson"]. ''SocietyReporters | Welcome to SocietyReporters.com ...News as it happens!!!''<span class="reference-accessdate">. Retrieved <span class="nowrap">2024-10-07</span></span>.</cite></ref>
=== Ọrụ ndọrọ ndọrọ ọchịchị ===
Ọrụ ndọrọ ndọrọ ọchịchị Johnson malitere n'afọ 2014, ógbè ọ gbara ọsọ maka Ogun Steeti House of Assembly mana o meriri. O sonyere ọzọ n'afọ 2019, a họpụtakwara ya ka ọ bụrụ onye otu ụlọ omebe iwu steeti Ogun na-anọchite anya mpaghara steeti Ijebu North East.<ref>{{Cite web|author=Amarachi|date=2024-03-06|title=Senate Confirms Tinubu's Nominees, Raheem, Abayomi As NPC Commissioner|url=https://www.tori.ng/news/263759/senate-confirms-tinubus-nominees-raheem-abayomi-as.html|accessdate=2024-10-18|work=Tori.ng|language=English}}</ref> N'oge ọ nọ n'ọkwa, o lekwasịrị anya na mmepe akụrụngwa na itinye aka na obodo, ndị omeiwu na ọchịchị ime obodo.<ref name=":3">{{Cite web|author=OgunToday|date=2022-04-21|title=2023: Ijebu North-East APC stakeholders endorse Ogun lawmaker, Fasuwa for second term|url=https://oguntoday.com/2023-ijebu-north-east-apc-stakeholders-endorse-ogun-lawmaker-fasuwa-for-second-term/|accessdate=2024-10-18|work=Oguntoday Newspaper|language=en-US|archivedate=2024-10-15|archiveurl=https://web.archive.org/web/20241015225404/https://oguntoday.com/2023-ijebu-north-east-apc-stakeholders-endorse-ogun-lawmaker-fasuwa-for-second-term/}}</ref><ref name=":2">{{Cite web|date=2024-02-19|title=Otunba Faj: President Tinubu Paves Way for Effective Governance - News Reporters|url=https://newsreporters.com.ng/2024/02/19/otunba-faj-president-tinubu-paves-way-for-effective-governance/|accessdate=2024-10-07|language=en-US}}</ref>
N'afọ 2024, a họpụtara Johnson dị ka Kọmishọna [[Federal Capital Territory (Nigeria)|Federal]] na National Population Commission na-anọchite anya Ogun State n'okpuru nchịkwa nke [[Bola Tinubu|Onye isi ala Bola Tinubu]]. Ọrụ ya n'ọrụ a gụnyere ilekọta Ọrụ ọnụ ọgụgụ mba na atụmatụ ọnụ ọgụgụ mmadụ, ọ rụkwara ọrụ iji melite nchịkọta data maka iwu ndị mmadụ.<ref name=":0">{{Cite web|author=Editorial 01|first=Premier|date=2024-03-06|title=JUST IN: THE SENATE CONFIRMS RAHEEM AND ABAYOMI, TINUBU'S NOMINEES, AS NPC COMMISSIONERS.|url=https://thepremiernews.com/just-in-the-senate-confirms-raheem-and-abayomi-tinubus-nominees-as-npc-commissioners/|accessdate=2024-10-07|work=The Premier News|language=en-US}}<cite class="citation web cs1" data-ve-ignore="" id="CITEREFEditorial_012024">Editorial 01, Premier (2024-03-06). [https://thepremiernews.com/just-in-the-senate-confirms-raheem-and-abayomi-tinubus-nominees-as-npc-commissioners/ "JUST IN: THE SENATE CONFIRMS RAHEEM AND ABAYOMI, TINUBU'S NOMINEES, AS NPC COMMISSIONERS"]. ''The Premier News''<span class="reference-accessdate">. Retrieved <span class="nowrap">2024-10-07</span></span>.</cite><span class="cs1-maint citation-comment" data-ve-ignore=""><code class="cs1-code"><nowiki>{{</nowiki>[[Templeeti:Cite web|cite web]]<nowiki>}}</nowiki></code>: CS1 maint: numeric names: authors list ([[:Category:CS1 maint: numeric names: authors list|link]])</span>
[[Category:CS1 maint: numeric names: authors list]]</ref>
=== Ọrụ Ọnụọgụgụ mba ===
N'afọ 2024, a họpụtara Johnson na National Population Commission (NPC) dị ka [[Federal Capital Territory (Nigeria)|Federal]] Commissioner, na-anọchite anya Ogun State. Ọrụ ya gụnyere ilekọta ọrụ ọnụ ọgụgụ mmadụ, Atụmatụ ọnụ ọgụgụ mmadụ na njikwa data ọnụ ọgụgụ mmadụ maka mba ahụ. Dị ka akụkụ nke NPC, ọ na-arụ ọrụ iji hụ na a na-anakọta data ndị bi na Naịjirịa n'ụzọ ziri ezi, nyochaa, ma jiri ya mee ihe maka Iwu mmepe mba, ọkachasị na mpaghara ndị dị ka [[Nlekọta ahụike ma ọ|nlekọta ahụike]], [[Education|agụmakwụkwọ]], na atụmatụ akụrụngwa.<ref name=":0">{{Cite web|author=Editorial 01|first=Premier|date=2024-03-06|title=JUST IN: THE SENATE CONFIRMS RAHEEM AND ABAYOMI, TINUBU'S NOMINEES, AS NPC COMMISSIONERS.|url=https://thepremiernews.com/just-in-the-senate-confirms-raheem-and-abayomi-tinubus-nominees-as-npc-commissioners/|accessdate=2024-10-07|work=The Premier News|language=en-US}}<cite class="citation web cs1" data-ve-ignore="" id="CITEREFEditorial_012024">Editorial 01, Premier (2024-03-06). [https://thepremiernews.com/just-in-the-senate-confirms-raheem-and-abayomi-tinubus-nominees-as-npc-commissioners/ "JUST IN: THE SENATE CONFIRMS RAHEEM AND ABAYOMI, TINUBU'S NOMINEES, AS NPC COMMISSIONERS"]. ''The Premier News''<span class="reference-accessdate">. Retrieved <span class="nowrap">2024-10-07</span></span>.</cite><span class="cs1-maint citation-comment" data-ve-ignore=""><code class="cs1-code"><nowiki>{{</nowiki>[[Templeeti:Cite web|cite web]]<nowiki>}}</nowiki></code>: CS1 maint: numeric names: authors list ([[:Category:CS1 maint: numeric names: authors list|link]])</span>
[[Category:CS1 maint: numeric names: authors list]]</ref>
== Ndụ onwe onye ==
Fasuwa Johnson lụrụ di, ọmụrụ ụmụ atọ.<ref name=":1">{{Cite web|author=admin|date=2018-08-29|title=WHY I AM LEAVING MY BUSINESS FOR POLITICS – Fasuwa Abayomi Johnson|url=https://www.societyreporters.com/why-i-am-leaving-my-business-for-politics-fasuwa-abayomi-johnson/|accessdate=2024-10-07|work=SocietyReporters {{!}} Welcome to SocietyReporters.com ...News as it happens!!!|language=en-US}}<cite class="citation web cs1" data-ve-ignore="" id="CITEREFadmin2018">admin (2018-08-29). [https://www.societyreporters.com/why-i-am-leaving-my-business-for-politics-fasuwa-abayomi-johnson/ "WHY I AM LEAVING MY BUSINESS FOR POLITICS – Fasuwa Abayomi Johnson"]. ''SocietyReporters | Welcome to SocietyReporters.com ...News as it happens!!!''<span class="reference-accessdate">. Retrieved <span class="nowrap">2024-10-07</span></span>.</cite></ref>
== Utu aha na nsọpụrụ ==
Iji gosi ekele maka onyinye ya n'ọrụ ọha na eze na obodo ya, Johnson nwere aha Otunba Apesin nke Ilugun-South Ijebu na Apesin nke Alaeze Ukwu. Aha Otunba bụ nsọpụrụ ọdịnala na Naịjirịa, nke a na-enyekarị ndị mmadụ tinyere aka dị ukwuu n'obodo ha, ọtụtụ mgbe n'ịchịisi, ọrụ ebere, ma ọ bụ ọrụ ya.<ref name=":4">{{Cite web|author=Reporter|date=2017-07-03|title=Meet AWUJALE's 50 Otunbas & High Chiefs+ Why Oba SIKIRU ADETONA Likes Them|url=https://www.citypeopleonline.com/meet-awujales-50-otunbas-high-chiefs-oba-sikiru-adetona-likes/|accessdate=2024-10-18|work=City People Magazine|language=en-US}}</ref>
== Edensibia ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
[[Otú:Mmadụ ndi di ndụ]]
[[Otú:Articles with hCards]]
1x5o46v02xlqyu59hqqz260f5ev1j8k
Ogige Ntụrụndụ Ugwu Ntringui
0
77142
670495
2026-06-30T07:38:55Z
Adimora chidinma
15845
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1340031177|Mount Ntringui National Park]]"
670495
wikitext
text/x-wiki
{{Reflist}}'''Ogige Ntụrụndụ Ugwu Ntringui''' bụ ogige ntụrụndụ dị na agwaetiti Anjouan na [[Comoros]]. Ọ na-ekpuchi mpaghara nke 79.14 km<sup>2</sup> n'etiti agwaetiti ahụ. E guzobere ogige ntụrụndụ ahụ na 2010.
== Ogige Ntụrụndụ ==
Ogige ntụrụndụ ahụ gụnyere Ugwu Ntringui, ugwu kachasị elu nke Anjouan, yana Ọdọ Mmiri Dzilandzé, ọdọ mmiri dị n'ọgba nke bụ ọdọ mmiri kachasị ukwuu na Anjouan, na Ọhịa Moya, ọhịa kachasị ukwuu na Anjouan.
Ogige ntụrụndụ a gụnyere Ugwu Ntringui (mita 1.595), ugwu kachasị elu na Anjouan, na Ugwu Trindrini (mita 1.474), nke abụọ kachasị elu, nke dị na ndịda ọwụwa anyanwụ nke Ugwu Ntringui. Ugwu ndị a bụ ii iyi nke ọtụtụ osimiri na iyi na-adịgide adịgide nke Anjouan, ọtụtụ n'ime ha nwere ndagwurugwu na okirikiri miri emi n'akụkụ ugwu. Ọdọ Mmiri Dzialandzé dị n'ịdị elu mita 900 n'ime olulu dị n'akụkụ ndịda ọwụwa anyanwụ nke Ugwu Ntringui, ma kpuchie mpaghara hekta abụọ. Ọ bụ ebe obibi nke obere grebe (''Tachybaptus ruficollis'') na azụ mmiri dị ọcha nke Anjouan.
Anjouan jupụtara n'oké ọhịa na mbụ. E kpochapụrụ ọtụtụ n'ime ọhịa ndị dị n'àgwàetiti ahụ, ihe fọdụrụnụ nọkwa n'okpuru nrụgide site na owuwe ihe ubi na mkpocha maka ọrụ ugbo na ala ịta nri. Oké ọhịa ndị fọdụrụnụ na-adịkarị n'ime ogige ahụ. Ọhịa Moya, nke dị n'ebe ndịda nke Ugwu Trindrini n'akụkụ ndịda nke ogige ahụ, bụ nnukwu ọhịa fọdụrụ na Anjouan, na-ekpuchi mpaghara ne ihe dịka hekta 500. Ọ bụ ebe obibi nke ọtụtụ anụmanụ, gụnyere ụmụ oke abụọ (''Pteropus livingstonii'') na <nowiki><i id="mwKw">Pteropus seychellensis</i></nowiki> var. <nowiki><i id="mwLA">comorensis</i></nowiki>), Anjouan scops owl (''Otus capnodes''), na mongoose lemur (Eulemur mongoz).
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
oswn409wzjet7cqi50wckps3qtn2um8
670497
670495
2026-06-30T08:22:17Z
Adimora chidinma
15845
670497
wikitext
text/x-wiki
{{Short description|National park in the Comoros}}
{{Infobox protected area
| name = Mount Ntringui National Park
| alt_name = Parc National Mont Ntringui
| iucn_category = II
| iucn_ref = <ref name = pnc>Parcs nationaux des Comores (2017). ''Plan d’Aménagement et de Gestion du Parc national Mont Ntringui. 2017-2021''. 94 p + annexes 84 p.</ref>
| image = File:Lac dzialandze.JPG
| image_size =
| image_alt =
| image_caption = Lake Dzialandzé
| map = Comoros
| map_width =
| map_alt =
| map_caption = Location of the park on Anjouan, Comoros
| relief = 1
| label =
| label_position =
| mark =
| marker_size =
| location = [[Anjouan]], [[Comoros]]
| nearest_city = [[Mutsamudu]]
| coordinates = {{coords|12|12|55.5|S|44|25|31.1|E}}
| coords_ref =
| area_ha = 7914
| designation =
| authorized =
| created =
| designated = 2010
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator = The Comoros National Parks Agency
| operator =
| owner =
| website =
| url =
| child =
| module = {{Designation list
| embed = yes
| designation1 = Ramsar
| designation1_offname = Le Mont Ntringui
| designation1_date = 12 November 2006
| designation1_number = 1650<ref>{{Cite web|title=Le Mont Ntringui|website=[[Ramsar Convention|Ramsar]] Sites Information Service|url=https://rsis.ramsar.org/ris/1650|accessdate=30 August 2021}}</ref>}}
}}
{{Reflist}}'''Ogige Ntụrụndụ Ugwu Ntringui''' bụ ogige ntụrụndụ dị na agwaetiti Anjouan na [[Comoros]]. Ọ na-ekpuchi mpaghara nke 79.14 km<sup>2</sup> n'etiti agwaetiti ahụ. E guzobere ogige ntụrụndụ ahụ na 2010.<ref name="unep">UNEP-WCMC (2021). Protected Area Profile for Parc National Mont Ntringui from the World Database of Protected Areas. Accessed 30 August 2021. [https://www.protectedplanet.net/555576147]</ref>
== Ogige Ntụrụndụ ==
Ogige ntụrụndụ ahụ gụnyere Ugwu Ntringui, ugwu kachasị elu nke Anjouan, yana Ọdọ Mmiri Dzilandzé, ọdọ mmiri dị n'ọgba nke bụ ọdọ mmiri kachasị ukwuu na Anjouan, na Ọhịa Moya, ọhịa kachasị ukwuu na Anjouan.<ref name = pnc>Parcs nationaux des Comores (2017). ''Plan d’Aménagement et de Gestion du Parc national Mont Ntringui. 2017-2021''. 94 p + annexes 84 p.</ref>
Ogige ntụrụndụ a gụnyere Ugwu Ntringui (mita 1.595), ugwu kachasị elu na Anjouan, na Ugwu Trindrini (mita 1.474), nke abụọ kachasị elu, nke dị na ndịda ọwụwa anyanwụ nke Ugwu Ntringui. Ugwu ndị a bụ ii iyi nke ọtụtụ osimiri na iyi na-adịgide adịgide nke Anjouan, ọtụtụ n'ime ha nwere ndagwurugwu na okirikiri miri emi n'akụkụ ugwu. Ọdọ Mmiri Dzialandzé dị n'ịdị elu mita 900 n'ime olulu dị n'akụkụ ndịda ọwụwa anyanwụ nke Ugwu Ntringui, ma kpuchie mpaghara hekta abụọ. Ọ bụ ebe obibi nke obere grebe (''Tachybaptus ruficollis'') na azụ mmiri dị ọcha nke Anjouan.<ref name = pnc>Parcs nationaux des Comores (2017). ''Plan d’Aménagement et de Gestion du Parc national Mont Ntringui. 2017-2021''. 94 p + annexes 84 p.</ref>
Anjouan jupụtara n'oké ọhịa na mbụ. E kpochapụrụ ọtụtụ n'ime ọhịa ndị dị n'àgwàetiti ahụ, ihe fọdụrụnụ nọkwa n'okpuru nrụgide site na owuwe ihe ubi na mkpocha maka ọrụ ugbo na ala ịta nri. Oké ọhịa ndị fọdụrụnụ na-adịkarị n'ime ogige ahụ.<ref name = cepf>Critical Ecosystem Partnership Fund (2014). ''Ecosystem Profile: Madagascar and Indian Ocean Islands.'' Final Report, December 2014.</ref> Ọhịa Moya, nke dị n'ebe ndịda Ugwu Trindrini n'akụkụ ndịda nke ogige ahụ, bụ oke ọhịa kachasị na Anjouan, nke nwere ihe dị ka hekta 500. Ọ bụ ebe obibi nke ọtụtụ anụmanụ obodo, gụnyere ụsụ abụo (Livingstone's flying fox (''Pteropus livingstonii'') na ''Pteropus seychellensis'' var. ''comorensis''), Anjouan scops owl (''Otus capnodes''), and mongoose lemur (''Eulemur mongoz'').<ref name = pnc/>
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
lq1i1i5m69shj7yv9qbu5kph1gq2htx
Osimiri Lufira
0
77143
670498
2026-06-30T09:20:11Z
Adimora chidinma
15845
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1222510257|Lufira River]]"
670498
wikitext
text/x-wiki
{| class="infobox"
! colspan="2" class="infobox-above" style="background-color: #CEDEFF;color: #202122;" |Osimiri Lufira
|-
| colspan="2" class="infobox-image" |[[File:COLLECTIE_TROPENMUSEUM_Vissende_mannen_in_de_rivier_Lufira_Katanga_TMnr_60031838.jpg|frameless]]
|-
| colspan="2" class="infobox-image" |[[File:Lualaba_River_DRC.svg|250x250px]]<div class="infobox-caption">Osimiri Lualaba na-acha ọbara ọbara. Osimiri Lufira (adịghị egosi) na-asọ n'ebe ugwu ọdịda anyanwụ tupu ọ banye Lualaba n'ebeebe ugwu Bukama</div>
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Ebe
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Mba
| class="infobox-data" |[[Democratic Republic of the Congo]]
|-
! colspan="2" class="infobox-header" style="background-color: #CEDEFF;color: #202122;" |Àgwà ya
|-
! class="infobox-label" scope="row" |[[River mouth|Ọnụ]]
| class="infobox-data" |
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• ebe </div>
| class="infobox-data" |[[Lualaba River|Osimiri Lualaba]]
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |<div style="display:inline;font-weight:normal">• akara </div>
| class="infobox-data" |<templatestyles src="Module:Coordinates/styles.css"></templatestyles><span class="geo-inline"><span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Lufira_River¶ms=08_20_03_S_26_29_46_E_type:river <span class="geo-default"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">08°20′03′′S</span> <span class="longitude">26°29′46′′E</span></span></span><span class="geo-multi-punct">/__ibo____ibo____ibo__ Ọ bụ ezie na ọ bụ</span><span class="geo-nondefault"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">8.33417°S 26.49611°E</span><span style="display:none"> / <span class="geo">-8.33417; 26.49611</span></span></span>]</span></span><indicator name="coordinates"><span id="coordinates">[[Geographic coordinate system|Coordinates]]: {{#parsoid�fragment:6}}<span class="plainlinks nourlexpansion">[https://geohack.toolforge.org/geohack.php?pagename=Lufira_River¶ms=08_20_03_S_26_29_46_E_type:river <span class="geo-default"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">08°20′03″S</span> <span class="longitude">26°29′46″E</span></span></span><span class="geo-multi-punct"> / </span><span class="geo-nondefault"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">8.33417°S 26.49611°E</span><span style="display:none"> / <span class="geo">-8.33417; 26.49611</span></span></span>]</span>[[Category:Pages using gadget WikiMiniAtlas]]</span></indicator>
|- style="padding: 0 0.6em 0.2em 0.6em;line-height: 1.2em;"
! class="infobox-label" scope="row" |Ogologo
| class="infobox-data" |500 kilomita (310 mi)
|- class="infobox-hiddenrow"
| colspan="2" class="infobox-below" |<templatestyles src="Module:Infobox/styles.css"></templatestyles>
|- class="mergedrow"
! colspan="2" class="infobox-header" |<templatestyles src="Module:Infobox/styles.css"></templatestyles><div style="line-height:1.5;text-align:center;border-style:solid;border-width:4px;border-color:#8DE3D2">Ala Mmiri Ramsar</div>
|- class="mergedrow"
! class="infobox-label" scope="row" |<div style="display: inline-block; line-height: 1.2em; padding: .1em 0; ">Aha gọọmentị</div>
| class="infobox-data" |Mmiri nke Lufira
|- class="mergedrow"
! class="infobox-label" scope="row" |Ndị a họpụtara
| class="infobox-data" |31 Ọktoba 2017
|- class="mergedrow"
! class="infobox-label" scope="row" |Ihe odide no.
| class="infobox-data" |2318
|}
'''Osimiri Lufira''' bụ isi iyi nke Osimiri Lualaba na [[Democratic Republic of the Congo]] (DRC).
Lufira na-ebili na Shaba Plateau na ndịda Likasi. E mebiri osimiri ahụ na 1926 na Mwadingusha dị nso na Likasi iji guzobe Ọdọ Mmiri Tshangalele, ebe nchekwa maka igwe ọkụ eletrik na-enye ike maka ịgbaze ọla kọpa. Ọ na-aga n'ebe ugwu site na Ugwu Bia ruo ihe dị ka kilomita 500 (310 mi), na-esonyere Lualaba na Ọdọ Mmiri Kisale.
== Edensibịa ==
{{Reflist}}
[[Otú:Short description is different from Wikidata]]
[[Otú:Articles with short description]]
tugqewj1crwvf6ql4t8x664zp6kstym
Foster Ogola
0
77144
670499
2026-06-30T09:25:07Z
Anumudu Augustina
62445
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1361019030|Foster Ogola]]"
670499
wikitext
text/x-wiki
<templatestyles src="Module:Infobox/styles.css"></templatestyles>{{Infobox officeholder
| name = Foster Ogola
| office = Senator 8th National Assembly
| constituency = [[Bayelsa West senatorial district]]
| occupation = Politician
| party = [[Peoples Democratic Party (Nigeria)]] (PDP)
}}
'''Foster Ogola''' bụ onye ndọrọ ndọrọ ọchịchị Naijiria. Ọ rụrụ ọrụ dị ka onye omeiwu na-anọchite anya Bayelsa West na 8th National Assembly . <ref>{{Cite news|author=Nwachukwu|first=John Owen|date=2019-05-27|title=9th Assembly: PDP has not decided yet - Senator Ogola|url=https://dailypost.ng/2019/05/27/9th-assembly-pdp-not-decided-yet-senator-ogola/|accessdate=2025-01-18|work=[[Daily Post (Nigeria)|Daily Post]]|language=en-US}}</ref> <ref>{{Cite news|date=2018-10-02|title=Foster Ogola loses bid to return to Senate as Dickson's ally wins|url=https://dailytrust.com/foster-ogola-loses-bid-to-return-to-senate-as-dicksons-ally-wins/|accessdate=2025-01-18|work=[[Daily Trust]]|language=en-US}}</ref><ref>{{Cite news|title=Investigation: Nigerian Senator caught in certificate scandal|url=https://www.premiumtimesng.com/news/headlines/264598-investigation-nigerian-senator-caught-in-certificate-scandal.html?tztc=1|accessdate=2025-01-18|work=[[Premium Times]]}}</ref>
== Edensibịa ==
{{Reflist}}
[[Otú:Mmadụ ndi di ndụ]]
17su6k9rfd8z54eja2ving7irirx687
Ogige Ntụrụndụ Mohéli
0
77145
670500
2026-06-30T10:06:15Z
Adimora chidinma
15845
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1354756192|Mohéli National Park]]"
670500
wikitext
text/x-wiki
'''Ogige Ntụrụndụ Mohéli''' bụ ogige mba dị na Comoros. Ọ gụnyere mpaghara mmiri, osimiri, na ala dị n'agwaetiti Mohéli na gburugburu ya. Ogige ahụ nwere obosara nke 643.62 km2.. E guzobere ya dị ka Mohéli Marine Park na 19 Eprel 2001, ọ bụ ebe mbụ echedoro na Comoros. A họpụtara ya ka ọ bụrụ ogige ntụrụndụ mba n'afọ 2010.<ref name="unep-wcmc" /> N'afọ 2015, e mere ka ogige ntụrụndụ ahụ gbasaa iji tinye ihe dị ka ụzọ atọ n'ụzọ anọ nke mpaghara ala Mohéli. Ọ bụ ókèala kachasị n'ebe ndịda nke mba na-asụ Arabic.
== Ụgbọ Mmiri ==
Akụkụ mmiri nke ogige ntụrụndụ ahụ sitere na ndịda na ọwụwa anyanwụ nke agwaetiti ahụ. Ọ gụnyere oké osimiri dị n'akụkụ osimiri ahụ, nke gbara ọdọ mmiri dị mita 10 ruo 60 n'omimi, yana obere agwaetiti asatọ dị n'ugwu, yana oké osimiri mepere emepe n'ofe oké osimiri ahụ ruo omimi mita 100. E nwere Osisi mangrove dị hekta iri itoolu na otu n'akụkụ ụsọ mmiri nke agwaetiti ahụ, na ahịhịa mmiri dị n'ọdọ mmiri ahụ.
Otu ihe dị ịrịba ama nke ogige ahụ bụ ọnụ ọgụgụ nke coelacanths, ogige ahụ nwere ụdị dị iche iche nke sharks na humpback whales. Ụdị mmiri ndị ọzọ gụnyere dugong (''Dugong dugon''), mbe mmiri na-acha akwụkwọ ndụ akwụkwọ ndụ (''Chelonia mydas''), mbe hawksbill (''Eretmochelys imbricata''), ụdị dolphin asatọ, na ụdị abụọ nke bottlenose whales.
[[Faịlụ:Comoros-Mchaco_island.jpg|áká_ịkẹngạ|thumb|Nnụnụ mmiri na Mchaco Islet na Ogige Ntụrụndụ Mohéli]]
Obere agwaetiti ndị ahụ na-amụ ụmụ nnụnụ mmiri, gụnyere masked booby (''Sula dactylatra''), brown noddy (''Anous stolidus''), white-tailed tropicbird (''Phaethon lepturus''), obere frigatebird (''Fregata ariel''), na nnukwu frigatebird ("Fregata minor").
== Ebe a na-ahụkarị ==
Akụkụ ala nke ogige ahụ nwere ala siri ike, yana ndagwurugwu miri emi nke ugwu kewara. Ebe kachasị elu bụ Mont Mlédjélé (mita 790). Ọtụtụ agwaetiti ahụ bụbu ọhịa, mana a kpụchara ọtụtụ ọhịa maka ọrụ ugbo ma ọ bụ ịzụ anụ ụlọ, ma ọ bụ mebie ha site na ihe omume dịka owuwe osisi. Nnukwu ebe ọhịa na-adịghị emebi emebi ka dị na mgbada ọdịda anyanwụ na ndịda nke Ugwu Mlédjélé. Oke ọhịa ahụ bụ ebe obibi nke osisi ndị Pterophylla comorensis na Khaya madagascariensis, nke a na-eji osisi ha kpọrọ ihe, yana ọtụtụ ụdị osisi, osisi, ferns, na orchids ndị ọzọ, gụnyere ọtụtụ ụdị ndị Comorian. Anụmanụ ndị obodo gụnyere Livingstone's fruit bat (Pteropus livingstonii), nke bi naanị na Mohéli na Anjouan, Moheli scops owl (Otus moheliensis) na Moheli brush warbler (Nesillas mariae), nke Mohéli jupụtara na ya, na ụdị nnụnụ ndị ọzọ, anụ na-akpụ akpụ, na ụmụ ahụhụ ndị a na-ahụkarị na Agwaetiti Comoro.
== Mmiri dị ọcha ==
Ogige ntụrụndụ ahụ gụnyekwara Ọdọ Mmiri Dziani-Boudouni, ọdọ mmiri na-atọ ụtọ na ala ndịda agwaetiti ahụ. Ọdọ mmiri ahụ kpuchiri ebe dị hekta 30, ma nwee ike ijikọ ya na oghere mgbawa ugwu dị n'okpuru ala. Ọ na-akwado nnụnụ dịgasị iche iche.
== Edensibịa ==
{{Reflist}}
b80tgv0q619zvvhgfc1q64kyvcyhgo0
670501
670500
2026-06-30T10:18:10Z
Adimora chidinma
15845
670501
wikitext
text/x-wiki
{{Short description|National park in the Comoros}}
{{Infobox protected area
| name = Mohéli National Park
| alt_name = Hifadhi ya Taifa ya Mwali
| iucn_category =
| iucn_ref =
| image = Ouallah-Mohéli-Corail.jpg
| image_size =
| image_alt =
| image_caption = reef corals in Moheli National Park
| map = <!-- or | map_image = -->
| map_width =
| map_alt =
| map_caption =
| relief =
| label =
| label_position =
| mark =
| marker_size =
| location = [[Mohéli]], [[Comoros]]
| nearest_city =
| coordinates = {{Coord|12|10|S|43|46|E}}
| coords_ref = (kolossus-frwiki)
| area_ha = 64362
| designation = 2001 marine national park; 2010 national park
| authorized =
| created =
| designated =
| established =
| visitation_num =
| visitation_year =
| visitation_ref =
| governing_body =
| administrator =
| operator = The Comoros National Parks Agency
| owner =
| website =
| url =
| child =
| module = {{Designation list
| embed = yes
| designation1 = Ramsar
| designation1_offname = Lake Dziani Boundouni
| designation1_date = 9 February 1995
| designation1_number = 717<ref name = rsis>{{Cite web|title=Lake Dziani Boundouni|website=[[Ramsar Convention|Ramsar]] Sites Information Service|url=https://rsis.ramsar.org/ris/717|accessdate=31 August 2021}}</ref>}}
}}
'''Ogige Ntụrụndụ Mba Mohéli ''' bụ ogige mba dị na [[Comoros]]. Ọ gụnyere mpaghara mmiri, osimiri, na ala dị n'agwaetiti Mohéli na gburugburu ya. Ogige ahụ nwere mpaghara nke 643.62 km<sup>2</sup>.<ref name="unep-wcmc">UNEP-WCMC (2021). Profaịlụ Mpaghara Echedoro maka Parc National de Mohéli site na Nchekwa Data Ụwa nke Mpaghara Echedoro. Enwetara ya na 10 Ọgọst 2021.reas. Accessed 10 August 2021. [https://www.protectedplanet.net/313046]</ref> E hiwere ya dị ka Ogige Mmiri Mohéli na 19 Eprel 2001, ọ bụkwa ebe mbụ e chebere na [[Comoros]]. E megharịrị ya ka ọ bụrụ ogige mba na 2010.<ref name = unep-wcmc/> Na 2015, e gbasaara ogige ahụ ka ọ gụnye ihe dị ka ụzọ atọ n'ime anọ nke mpaghara ala Mohéli.<ref>"Management of the marine protected area of Mohéli". Fondation Prince Albert II of Monaco. Accessed 31 August 2021. [https://www.fpa2.org/en/projets/management-of-the-marine-protected-area-of-mohéli-00473]</ref> Ọ bụ ókèala ndịda nke mba na-asụ Arabic kacha ndịda.
== Ụgbọ Mmiri ==
Akụkụ mmiri nke ogige ntụrụndụ ahụ sitere na ndịda na ọwụwa anyanwụ nke agwaetiti ahụ. Ọ gụnyere oké osimiri dị n'akụkụ osimiri ahụ, nke gbara ọdọ mmiri dị mita 10 ruo 60 n'omimi, yana obere agwaetiti asatọ dị n'ugwu, yana oké osimiri mepere emepe n'ofe oké osimiri ahụ ruo omimi mita 100.<ref name = cepf/> E nwere Osisi mangrove dị hekta iri itoolu na otu n'akụkụ ụsọ mmiri nke agwaetiti ahụ, na ahịhịa mmiri dị n'ọdọ mmiri ahụ.<ref name="abdou">Abdou, Ahmed Youssouf. "Scientific Information for Marine Protected Areas in the Union of Comoros.
EBSAs. Area: Moheli Marine Park (PMM) Comoros". Accessed 31 August 2021. [https://www.cbd.int/doc/meetings/mar/ebsa-sio-01/other/ebsa-sio-01-comoros-en.pdf]</ref>
Otu ihe dị ịrịba ama nke ogige ahụ bụ ọnụ ọgụgụ nke coelacanths, ogige ahụ nwere ụdị dị iche iche nke sharks na humpback whales.<ref>[[UNESCO]]. [http://www.vliz.be/projects/marineworldheritage/sites/1.3_Comoros%20and%20Mayotte.php?item=The%20Indian%20Ocean The Comoros – Glorieuses crescent]. Retrieved on September 16, 2017</ref><ref>UNESCO. [http://www.vliz.be/projects/marineworldheritage/sites/1.4_Iles%20Eparses.php The Iles Éparses (Scattered Islands)]. Retrieved on September 16, 2017</ref> Ụdị mmiri ndị ọzọ gụnyere dugong (''Dugong dugon''), mbe mmiri na-acha akwụkwọ ndụ akwụkwọ ndụ (''Chelonia mydas''), mbe hawksbill (''Eretmochelys imbricata''), ụdị dolphin asatọ, na ụdị abụọ nke bottlenose whales.<ref name = cepf>Critical Ecosystem Partnership Fund (2014). ''Ecosystem Profile: Madagascar and Indian Ocean Islands.'' Final Report, December 2014.</ref>
[[Faịlụ:Comoros-Mchaco_island.jpg|áká_ịkẹngạ|thumb|Nnụnụ mmiri na Mchaco Islet na Ogige Ntụrụndụ Mohéli]]
Obere agwaetiti ndị ahụ na-amụ ụmụ nnụnụ mmiri, gụnyere masked booby (''Sula dactylatra''), brown noddy (''Anous stolidus''), white-tailed tropicbird (''Phaethon lepturus''), obere frigatebird (''Fregata ariel''), na nnukwu frigatebird ("Fregata minor").
== Ebe a na-ahụkarị ==
Akụkụ ala nke ogige ahụ nwere ala siri ike, yana ndagwurugwu miri emi nke ugwu kewara. Ebe kachasị elu bụ Mont Mlédjélé (mita 790). Ọtụtụ agwaetiti ahụ bụbu ọhịa, mana a kpụchara ọtụtụ ọhịa maka ọrụ ugbo ma ọ bụ ịzụ anụ ụlọ, ma ọ bụ mebie ha site na ihe omume dịka owuwe osisi. Nnukwu ebe ọhịa na-adịghị emebi emebi ka dị na mgbada ọdịda anyanwụ na ndịda nke Ugwu Mlédjélé. Oke ọhịa ahụ bụ ebe obibi nke osisi ndị Pterophylla comorensis na Khaya madagascariensis, nke a na-eji osisi ha kpọrọ ihe, yana ọtụtụ ụdị osisi, osisi, ferns, na orchids ndị ọzọ, gụnyere ọtụtụ ụdị ndị Comorian. Anụmanụ ndị obodo gụnyere Livingstone's fruit bat (Pteropus livingstonii), nke bi naanị na Mohéli na Anjouan, Moheli scops owl (Otus moheliensis) na Moheli brush warbler (Nesillas mariae), nke Mohéli jupụtara na ya, na ụdị nnụnụ ndị ọzọ, anụ na-akpụ akpụ, na ụmụ ahụhụ ndị a na-ahụkarị na Agwaetiti Comoro.<ref name = cepf/>
== Mmiri dị ọcha ==
Ogige ntụrụndụ ahụ gụnyekwara Ọdọ Mmiri Dziani-Boudouni, ọdọ mmiri na-atọ ụtọ na ala ndịda agwaetiti ahụ.<ref name = cepf/> Ọdọ mmiri ahụ kpuchiri ebe dị hekta 30, ma nwee ike ijikọ ya na oghere mgbawa ugwu dị n'okpuru ala. Ọ na-akwado nnụnụ dịgasị iche iche.<ref name = rsis/>
== Edensibịa ==
{{Reflist}}
mx6v8fwtadzjlroiqfvzzegceorilu3
Ọdọ Mmiri Fitri
0
77146
670502
2026-06-30T10:23:27Z
Adimora chidinma
15845
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1324511012|Lake Fitri]]"
670502
wikitext
text/x-wiki
'''Ọdọ Mmiri Fitri''' bụ ọdọ mmiri na-adịghị omimi na etiti [[Chad]], nke dị na mpaghara Sahel ihe dị ka kilomita 300 n'ebe ọwụwa anyanwụ nke N"Djamena. A họpụtara ya dị ka Ala Mmiri dị mkpa n'okpuru Nkwekọrịta Ramsar.
== Ọdịdị ala ==
Oke ọdọ mmiri a na-adịkarị bụ ihe dị ka hekta 50,000 (eka 120,000), mana nke a nwere ike okpukpu atọ n'ime afọ mmiri na-adịghị mma. Mmiri ozuzo na-ezo n'oge na mmiri na-asọpụta site na mpaghara mmiri a na-eme atụmatụ na ọ dị 70,000 km2 (27,000 sq mi) na-enye ya nri. Isi ihe oriri osimiri bụ Osimiri Batha nke oge a, nke na-ebuga mmiri site na oke osimiri Ouaddai gaa n'ọdịda anyanwụ. Dịka ọdọ mmiri Chad nke ọzọ dị na Chad, Ọdọ Mmiri Chad, ọ bụghị nnukwu dịka ọ dịbu. Ọdọ mmiri a na-adịgide adịgide nwere ike ịkpọ nkụ n'oge oke ọkọchị siri ike, dịka nke mere na mmalite narị afọ nke iri abụọ na ọzọ na 1984–1985.
=== Ebe Nnụnụ Dị Mkpa ===
A họpụtara ọdọ mmiri ahụ dị ka Ebe Nnụnụ Dị Mkpa (IBA) site na BirdLife International n'ihi na ọ na-akwado ọnụ ọgụgụ dị ukwuu nke ndị na-acha ọcha na ndị na-eme mkpọtụ, ndị na-agba ụta, ndị na'Ebe ugwu, ndị na -agba ụta ojii, ndị na na-agba ọkụ na ndị na - squacco.<ref name="bli">{{Cite web|url=https://datazone.birdlife.org/site/factsheet/lake-fitri-iba-chad|title=Lake Fitri|author=<!--Not stated-->|date=2024|work=BirdLife Data Zone|publisher=BirdLife International|accessdate=2024-10-30}}</ref>
[[Faịlụ:Lakefitrinasa.jpg|none|thumb|600x600px|Ọdọ Mmiri Fitri]]
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
6ehq9j1zcx3rzm416bfifa4wcghw0ly
670503
670502
2026-06-30T10:26:30Z
Adimora chidinma
15845
670503
wikitext
text/x-wiki
{{short description|Lake in Chad}}
{{Infobox lake
| name = Lake Fitri
| image = ISS-30 Lake Fitri, Chad.jpg
| caption =
| image_bathymetry =
| caption_bathymetry =
| location =
| coords = {{coord|12|48|33|N|17|30|9|E|region:TD_source:ruwiki_type:waterbody|display=inline,title}}
| type =
| inflow = [[Batha River]]
| outflow =
| catchment = {{convert|70,000|km2|abbr=on}}
| basin_countries = Chad
| length =
| width =
| area = {{convert|500|km2|abbr=on}}
| depth =
| max-depth =
| volume =
| residence_time =
| shore =
| elevation =
| frozen =
| islands =
| cities =
<!-- Map -->
| pushpin_map = Chad#Africa
| pushpin_label_position =
| pushpin_map_alt = Location of Lake Fitri in Chad.
| pushpin_map_caption =
<!-- Below -->
| website =
| reference =
|embedded = {{Designation list
| embed = yes
| designation1 = Ramsar
| designation1_offname = Lac Fitri
| designation1_date = 13 June 1990
| designation1_number = 486<ref>{{Cite web|title=Lac Fitri|website=[[Ramsar Convention|Ramsar]] Sites Information Service|url=https://rsis.ramsar.org/ris/486|accessdate=25 April 2018}}</ref>}}
}}
'''Ọdọ Mmiri Fitri''' bụ ọdọ mmiri na-adịghị omimi na etiti [[Chad]], nke dị na mpaghara Sahel ihe dị ka kilomita 300 n'ebe ọwụwa anyanwụ nke N"Djamena. A họpụtara ya dị ka Ala Mmiri dị mkpa n'okpuru Nkwekọrịta Ramsar.
== Ọdịdị ala ==
Oke ọdọ mmiri a na-adịkarị bụ ihe dị ka hekta 50,000 (eka 120,000), mana nke a nwere ike okpukpu atọ n'ime afọ mmiri na-adịghị mma. Mmiri ozuzo na-ezo n'oge na mmiri na-asọpụta site na mpaghara mmiri a na-eme atụmatụ na ọ dị 70,000 km2 (27,000 sq mi) na-enye ya nri. Isi ihe oriri osimiri bụ Osimiri Batha nke oge a, nke na-ebuga mmiri site na oke osimiri Ouaddai gaa n'ọdịda anyanwụ. Dịka ọdọ mmiri Chad nke ọzọ dị na Chad, Ọdọ Mmiri Chad, ọ bụghị nnukwu dịka ọ dịbu. Ọdọ mmiri a na-adịgide adịgide nwere ike ịkpọ nkụ n'oge oke ọkọchị siri ike, dịka nke mere na mmalite narị afọ nke iri abụọ na ọzọ na 1984–1985.
=== Ebe Nnụnụ Dị Mkpa ===
A họpụtara ọdọ mmiri ahụ dị ka Ebe Nnụnụ Dị Mkpa (IBA) site na BirdLife International n'ihi na ọ na-akwado ọnụ ọgụgụ dị ukwuu nke ndị na-acha ọcha na ndị na-eme mkpọtụ, ndị na-agba ụta, ndị na'Ebe ugwu, ndị na -agba ụta ojii, ndị na na-agba ọkụ na ndị na - squacco.<ref name="bli">{{Cite web|url=https://datazone.birdlife.org/site/factsheet/lake-fitri-iba-chad|title=Lake Fitri|author=<!--Not stated-->|date=2024|work=BirdLife Data Zone|publisher=BirdLife International|accessdate=2024-10-30}}</ref>
[[Faịlụ:Lakefitrinasa.jpg|none|thumb|600x600px|Ọdọ Mmiri Fitri]]
== Edensibịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}
2tis736ty0yd6nbjt7g32sspyq11rkc
Ebe Nchekwa Anụmanụ Binder-Léré
0
77147
670505
2026-06-30T11:13:09Z
Adimora chidinma
15845
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1339846171|Binder-Léré Faunal Reserve]]"
670505
wikitext
text/x-wiki
E guzobere Binder-Léré Faunal Reserve, na ndịda ọdịda anyanwụ [[Chad]], n'ókè [[Kameroon|Cameroon]], na 1974, na-ekpuchi mpaghara km2 sq mi).<ref name="Binder">{{Cite web|url=http://www.protectedplanet.net/sites/Binder_Lere_Faunal_Reserve|title=Binder-Léré Faunal Reserve|accessdate=18 October 2013|publisher=Protectedplanet.net|archiveurl=https://web.archive.org/web/20131024131034/http://www.protectedplanet.net/sites/Binder_Lere_Faunal_Reserve|archivedate=24 October 2013}}</ref> A họpụtara ya dị ka Ebe Ramsar kemgbe afọ 2005.
== Ọdịdị ala ==
Ala ahụ, nke dị n'ebe dị elu nke mita 400–500 (1,300–1,600 ft), nwere okwute na ala ndị mebiri emebi. Ọ na-eme mpaghara mgbanwe n'etiti oke ọhịa mepere emepe na oke ọhịa savanna.. [[Mayo Kébi|Osimiri Mayo-Kébbi]] nke na-esi n'ebe ọwụwa anyanwụ gaa n'ebe ọdịda anyanwụ na-agbanye mmiri n'ogige ntụrụndụ ahụ ma Gauthiot Falls dị ebe a. N'akụkụ ọdịda anyanwụ nke ebe nchekw ahụ, e nwere Ọdọ Mmiri Léré na Ọdọ Mmị Tréné nke Mayo-Kébbi na-agafe. Osimiri ahụ na-aga n'akụkụ ọdịda anyanwụ, na-abanye Cameroon, mgbe ahụ [[Naijiria|Naịjirịa]] ma mesịa banye na usoro Osimiri Niger.
Ọdọ Mmiri Léré nwere ogologo kilomita 14.5 (mile 9.0) yana obosara kilomita 4 (mile 2.5). Ọdọ Mmiri Tréné nwere ogologo kilomita 6 (mile 3.7) na obosara kilomita 2 (mile 1.2). Ala Touboiris na ala ahịhịa Loké dị nso na isi mmiri nke Osimiri Mayo-Kébbi, nke bụ mpaghara dị larịị mana dị n'èzí ókèala ebe nchekwa ahụ. Nkezi mmiri ozuzo kwa afọ na ebe nchekwa ahụ dị n'etiti 800–950 mm (mile 31–37).
=== Flora ===
Ahịhịa nwere ụdị osisi leguminus na ''Combretum'' woodland na mpaghara ndịda na ugwu nke ebe nchekwa ahụ. ''Terminalia'' na ''Boswellia'' bụ osisi ndị kachasị.
=== Anụmanụ ===
A na-edekọ nnụnụ mmiri Palearctic na-agagharị agagharị na ọdọ mmiri Léré na ọdọ mmiri Tréné. A na-akọ akụkọ Obere kestrel na ụdị abụọ nke Sahel biome. A họpụtara ebe nchekwa ahụ dị ka Ebe Nnụnụ Dị Mkpa (IBA) site na BirdLife International n'ihi na ọ na-akwado ọnụ ọgụgụ dị ukwuu nke ndị na-eri aṅụ na-acha ọbara ọbara, Senegal eremomelas, Gambaga flycatchers, chestnut-crowned sparrow-weavers, black-rumped waxbills na Sahel bush sparrows.<ref name="bli">{{Cite web|url=https://datazone.birdlife.org/site/factsheet/binder--l%C3%A9r%C3%A9-iba-chad|title=Binder - Léré|author=<!--Not stated-->|date=2024|work=BirdLife Data Zone|publisher=BirdLife International|accessdate=2024-10-30}}</ref>
A na-ahụ manatees nke ọdịda anyanwụ Afrịka n'ọnụ ọgụgụ dị mma; a kọrọ 100 na 1980s. Otú ọ dị, ịchụ nta n'ụzọ iwu na-akwadoghị site n'aka ndị na-achụ nta si Cameroon dị nnọọ ukwuu ma guzobe usoro nlekota anụ ọhịa na ndị nche obodo.
== Edensibịa ==
{{Reflist}}
33p3wj0r0v80p7avpolqjzfku44t2nc
670508
670505
2026-06-30T11:37:22Z
Adimora chidinma
15845
670508
wikitext
text/x-wiki
{{short description|Protected area in Chad}}
{{Infobox Protected area
| name = Binder-Léré Faunal Reserve
| iucn_category = IV
| image =
| image_caption =
| map = Chad
| map_caption = Map of [[Chad]]
| map_width =
| relief = 1
| location = [[Mayo-Kébbi]], [[Chad]]
| nearest_city = [[Mayo-Kébbi]], [[Chad]]
| coordinates = {{coords|9.6666|14.4666|region:TD-GR|notes=<ref name=Bird>{{Cite web|url=http://www.birdlife.org/datazone/userfiles/file/IBAs/AfricaCntryPDFs/Chad.pdf|format=pdf|title=Chad|accessdate=16 October 2013|publisher=Birlife International Organization}}</ref>|display=inline, title}}
| area = {{convert|1350|km2|sqmi|abbr=on}}
| established = 1974
| module = {{Designation list
| embed = yes
| designation1 = Ramsar
| designation1_offname = Réserve de faune de Binder-Léré
| designation1_date = 14 November 2005
| designation1_number = 1561<ref name="RSIS">{{Cite web|title=Réserve de faune de Binder-Léré|website=[[Ramsar Convention|Ramsar]] Sites Information Service|url=https://rsis.ramsar.org/ris/1561|accessdate=25 April 2018}}</ref>}}
}}
'''Ebe Nchekwa Osisi Binder-Léré''', na ndịda-ọdịda anyanwụ Chad, nke dị n'ókè Cameroon, ka e guzobere na 1974, na-ekpuchi mpaghara nke {{Convert|1350|km2|abbr=on}}.<ref name=Bird/><ref name=Binder>{{Cite web|url=http://www.protectedplanet.net/sites/Binder_Lere_Faunal_Reserve|title=Binder-Léré Faunal Reserve|accessdate=18 October 2013|publisher=Protectedplanet.net|url-status=dead|archiveurl=https://web.archive.org/web/20131024131034/http://www.protectedplanet.net/sites/Binder_Lere_Faunal_Reserve|archivedate=24 October 2013}}</ref> Ahọpụtala ya ka ọ bụrụ Ramsar kemgbe 2005.<ref name="RSIS">{{Cite web|title=Réserve de faune de Binder-Léré|website=[[Ramsar Convention|Ramsar]] Sites Information Service|url=https://rsis.ramsar.org/ris/1561|accessdate=25 April 2018}}</ref>
== Ọdịdị ala ==
Ala ahụ, nke dị n'ebe dị elu nke mita 400–500 (1,300–1,600 ft), nwere okwute na ala ndị mebiri emebi. Ọ na-eme mpaghara mgbanwe n'etiti oke ọhịa mepere emepe na oke ọhịa savanna.. [[Mayo Kébi|Osimiri Mayo-Kébbi]] nke na-esi n'ebe ọwụwa anyanwụ gaa n'ebe ọdịda anyanwụ na-agbanye mmiri n'ogige ntụrụndụ ahụ ma Gauthiot Falls dị ebe a. N'akụkụ ọdịda anyanwụ nke ebe nchekw ahụ, e nwere Ọdọ Mmiri Léré na Ọdọ Mmị Tréné nke Mayo-Kébbi na-agafe. Osimiri ahụ na-aga n'akụkụ ọdịda anyanwụ, na-abanye Cameroon, mgbe ahụ [[Naijiria|Naịjirịa]] ma mesịa banye na usoro Osimiri Niger.
Léré Lake nwere ogologo nke {{Convert|14.5|km|abbr=on}} na obosara nke {{Convert|4|km|abbr=on}}. Tréné Lake nwere ogologo nke {{Convert|6|km|abbr=on}} na obosara nke {{Convert|2|km|abbr=on}}. Apịtị Touboiris na apịtị Loké dị nso na isi mmiri nke Osimiri Mayo-Kébbi, nke bụ mpaghara dị larịị mana dị n'èzí ókèala ebe nchekwa ahụ. Nkezi mmiri ozuzo kwa afọ na-eme n'ebe nchekwa ahụ dị n'etiti {{Convert|800|-|950|mm|abbr=on}}.<ref name=Bird/>
=== Flora ===
Ahịhịa nwere ụdị osisi leguminus na ''Combretum'' woodland na mpaghara ndịda na ugwu nke ebe nchekwa ahụ. ''Terminalia'' na ''Boswellia'' bụ osisi ndị kachasị.<ref name=Bird/>
=== Anụmanụ ===
A na-edekọ nnụnụ mmiri Palearctic na-agagharị agagharị na ọdọ mmiri Léré na ọdọ mmiri Tréné. A na-akọ akụkọ Obere kestrel na ụdị abụọ nke Sahel biome. A họpụtara ebe nchekwa ahụ dị ka Ebe Nnụnụ Dị Mkpa (IBA) site na BirdLife International n'ihi na ọ na-akwado ọnụ ọgụgụ dị ukwuu nke ndị na-eri aṅụ na-acha ọbara ọbara, Senegal eremomelas, Gambaga flycatchers, chestnut-crowned sparrow-weavers, black-rumped waxbills na Sahel bush sparrows.<ref name="bli">{{Cite web|url=https://datazone.birdlife.org/site/factsheet/binder--l%C3%A9r%C3%A9-iba-chad|title=Binder - Léré|author=<!--Not stated-->|date=2024|work=BirdLife Data Zone|publisher=BirdLife International|accessdate=2024-10-30}}</ref>
A na-ahụ manatees nke ọdịda anyanwụ Afrịka n'ọnụ ọgụgụ dị mma; a kọrọ 100 na 1980s. Otú ọ dị, ịchụ nta n'ụzọ iwu na-akwadoghị site n'aka ndị na-achụ nta si Cameroon dị nnọọ ukwuu ma guzobe usoro nlekota anụ ọhịa na ndị nche obodo.<ref name=Bird>{{Cite web|url=http://www.birdlife.org/datazone/userfiles/file/IBAs/AfricaCntryPDFs/Chad.pdf|format=pdf|title=Chad|accessdate=16 October 2013|publisher=Birlife International Organization}}</ref>
== Edensibịa ==
{{Reflist}}
2jae5nh7qlaqfz07cwy13l74t4onpxi
Emma Nwachukwu
0
77148
670506
2026-06-30T11:32:13Z
Omekara Chinemerem
62457
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1359287609|Emma Nwachukwu]]"
670506
wikitext
text/x-wiki
<templatestyles src="Module:Infobox/styles.css"></templatestyles>{{Infobox officeholder
| name = Emmanuel Chibuzor Nwachukwu
| image = Emma Nwachukwu.jpg
| caption =
| office = Senator for Anambra South
| term_start = 8 October 2025
| predecessor = [[Ifeanyi Ubah]]
| birth_name = Emmanuel Chibuzor Nwachukwu
| birth_place = Ukpor, [[Nnewi South]]
| party = All Progressives Grand Alliance (APGA)
| alma_mater = University of Nigeria, Nsukka
| occupation = Accountant, businessman, politician
| title =
}}
<templatestyles src="Reflist/styles.css" />'''Emmanuel Chibuzor Nwachukwu''' {{Audio|Ig-Emmanuel Chibuzor Nwachukwu.ogg|Listen}} (nke a maara dị ka Chief Emma Nwachukwu ma na-akpọ '''Ọnọdụgo [[Ukpor]]''') bụ onye na-edekọ ego na Naijiria, onye ọchụnta ego, onye ndu obodo na onye ndọrọ ndọrọ ọchịchị. Ọ bụ Sinetọ na-anọchite anya Anambra South Senatorial District na ụlọ omebe iwu Naijiria na-esote ntuli aka nke August 2025.<ref name="Vanguardnhr">{{Cite news|title=By-elections: APGA wins Anambra South Senatorial District|url=https://www.vanguardngr.com/2025/08/apga-wins-senatorial-house-of-assembly-bye-elections-in-anambra/|date=17 August 2025|accessdate=18 August 2025|work=[[Vanguard (Nigeria)|Vanguard]]}}</ref> Ọ bụbu onyeisi oche nke Ukpor Improvement Union (UIU), otu kachasị elu na omenala obodo ya. <ref name="NewTelegraph">{{Cite news|title=Anambra South: Nwachukwu unveils agenda, assures of youth empowerment|url=https://newtelegraphng.com/anambra-south-nwachukwu-unveils-agenda-assures-of-youth-empowerment/|date=9 August 2025|accessdate=18 August 2025|work=[[New Telegraph]]}}</ref>
== Mbido ndụ na agụmakwụkwọ ==
Nwachukwu, amụrụ na Febụwarị 1, 1963 si n'obodo Umuhu dị na [[Ukpor]], [[Nnewi South]], Anambra State, Nigeria. Ọ lụrụ di kemgbe February 1, 1997.O nwetara akara ugo mmụta na akaụntụ na Mahadum Naịjirịa, Nsukka na 1987 ma mechaa gaa mmemme agụmakwụkwọ ndị isi na Lagos Business School na IESE Business School, Barcelona.<ref name="NigerianVoice">{{Cite web|title=Ukpor PG, Nwachukwu Clears Air On The 2019 Ịgba Asara Ukpor|url=https://www.thenigerianvoice.com/news/277131/ukpor-pg-nwachukwu-clears-air-on-the-2019-gba-asara-ukpor.html|work=NigerianVoice|date=April 2019|accessdate=30 October 2025}}</ref><ref name="NigeriaVoice">{{Cite web|title=Ukpor APGA Leader, Emma Nwachukwu Marks Birthday|url=https://www.thenigerianvoice.com/news/305553/ukpor-apga-leader-emma-nwachukwu-marks-birthday.html|work=NigerianVoice|date=February 2022|accessdate=30 October 2025}}</ref>
== Ọrụ ==
O nwetara akara ugo mmụta na akaụntụ na Mahadum Naịjirịa, Nsukka na 1987 ma mechaa gaa mmemme agụmakwụkwọ ndị isi na Lagos Business School na IESE Business School, Barcelona.<ref name="Independent">{{Cite news|title=Emma Nwachukwu Will Go To Senate — Soludo|url=https://independent.ng/emma-nwachukwu-will-go-to-senate-soludo/|date=3 August 2025|accessdate=18 August 2025|work=[[Independent (Nigeria)|Independent]]}}</ref>
== Nduzi obodo ==
Site na 2017 ruo 2020, Nwachukwu jere ozi dị ka Onye isi oche nke [[Ukpor Improvement Union]], idu ndú ya na Ukpor mere ka ọ nweta aha ọdịnala ''Onodugo Ukpor'', nkwanye ùgwù maka ọrụ pụrụ iche nye obodo.<ref name="NewTelegraph">{{Cite news|title=Anambra South: Nwachukwu unveils agenda, assures of youth empowerment|url=https://newtelegraphng.com/anambra-south-nwachukwu-unveils-agenda-assures-of-youth-empowerment/|date=9 August 2025|accessdate=18 August 2025|work=[[New Telegraph]]}}</ref>
== ndọrọ ndọrọ ọchịchị ==
=== Ntuli aka zuru oke nke 2023 ===
Chief Emma Nwachukwu enwetaghị tiketi onye omeiwu APGA maka Anambra n'ebe ndịda na onye na-asọmpi Ifeanyi Uba, jiri naanị votu 3 merie [[Chris Emeka Azubogu|Chris Emeka Azubuogu]] na ntuli aka APGA nke 2023 maka mpaghara ahụ. <ref name="DaillyPost">{{Cite news|title=APGA: Rep Chris Azubogu wins Anambra South Senatorial ticket after dumping PDP, APC|url=https://dailypost.ng/2022/06/01/anambra-rep-chris-azubogu-wins-apga-south-senatorial-ticket-after-dumping-pdp-apc/|date=1 June 2022|accessdate=30 October 2025|work=[[Daily Post (Nigeria)|Daily Post]]}}</ref>
=== Nhọpụta APGA ===
N'ọnwa Julaị afọ 2025, Nwachukwu meriri ntuli aka [[All Progressives Grand Alliance]] (APGA) maka ntuli aka nke Anambra South Senatorial District.<ref name="TheCable">{{Cite news|title=Emmanuel Nwachukwu wins APGA ticket for Anambra South senatorial by-election|url=https://www.thecable.ng/emmanuel-nwachukwu-wins-apga-ticket-for-anambra-south-senatorial-by-election|date=24 July 2025|accessdate=18 August 2025|work=[[TheCable]]}}</ref>
=== 2025 Nhọrọ nke Anambra South ===
N'abalị iri na isii n'ọnwa Ọgọstụ n'afọ 2025, ndị Independent National Electoral Commission (INEC) kwupụtara na Nwachukwu bụ onye mmeri nke ntuli aka ndị omeiwu nke Anambra South, na-eme ntụli aka 90,408 iji merie onye mmeri ya kacha nso site na All Progressives Congress (APC), onye nwetara 19,812 vootu.<ref name="DailyPost">{{Cite news|title=APGA’s Nwachukwu, Ikpeazu, Azikiwe win Anambra South, Onitsha North elections|url=https://dailypost.ng/2025/08/17/apgas-nwachukwu-ikpeazu-azikiwe-win-anambra-south-senate-onitsha-north-1-elections/|date=17 August 2025|accessdate=18 August 2025|work=[[Daily Post (Nigeria)|Daily Post]]}}</ref> Mmeri ahụ bụ akụkọ ihe mere eme ka ọ ghọrọ onye mbụ si [[Nnewi South]] LGA iji merie oche onye omeiwu n'okpuru APGA.<ref name="FactCheckNG">{{Cite news|title=Nwachukwu wins Anambra South senatorial bye-election — 2nd in history of APGA|url=https://www.factcheckng.com/blog/2025/08/17/nwachukwu-wins-anambra-south-senatorial-bye-election-2nd-in-history-of-apga/|work=FactCheck NG|date=17 August 2025|accessdate=18 August 2025}}</ref>
=== Ịṅụ iyi ===
N'abalị asatọ n'ọnwa Ọktoba n'afọ 2025, onye isi oche Senate, [[AKPABIO GODWILL OBOT|Godswill Akpabio]], mere ka Emma Nwachukwu bụrụ onye omeiwu Naijiria.<ref name="VanguardNigeria">{{Cite news|title=Akpabio swears in Ikpea, Nwachukwu as new senators|url=https://dailypost.ng/2025/08/17/apgas-nwachukwu-ikpeazu-azikiwe-win-anambra-south-senate-onitsha-north-1-elections/|date=10 October 2025|accessdate=30 October 2025|work=[[Daily Post (Nigeria)|Daily Post]]}}</ref>
== Ndụ onwe onye ==
Nwachukwu nwere aha ọdịnala ''Onodugo Ukpor''. Ndị enyi obodo ya kọwara ya dị ka onye na-akwado nchekwa ọdịbendị na itinye aka na obodo. A naghị ekwupụta nkọwa nke ndụ ezinụlọ ya n'ọtụtụ ebe.<ref name="NewTelegraph">{{Cite news|title=Anambra South: Nwachukwu unveils agenda, assures of youth empowerment|url=https://newtelegraphng.com/anambra-south-nwachukwu-unveils-agenda-assures-of-youth-empowerment/|date=9 August 2025|accessdate=18 August 2025|work=[[New Telegraph]]}}</ref>
== Edensibịa ==
{{Reflist|30em}}{{DEFAULTSORT:Nwachukwu, Emmanuel Chibuzor}}
== Njikọ mpụga ==
* [https://www.inecnigeria.org/ Independent National Electoral Commission (INEC)]
* [https://www.apga.com.ng/ Ebe nrụọrụ weebụ All Progressives Grand Alliance (APGA)]
{{DEFAULTSORT:Nwachukwu, Emmanuel Chibuzor}}
[[Otú:Mmadụ ndi di ndụ]]
9gnsv5tltkp8s7rs56ogwqad7cclvmu
Robert Koleoso
0
77149
670507
2026-06-30T11:34:39Z
Elizabeth chee
62456
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1359942562|Robert Koleoso]]"
670507
wikitext
text/x-wiki
<templatestyles src="Module:Infobox/styles.css"></templatestyles>{{Infobox officeholder
| name = Robert Koleoso
| office = Senator
| constituency = Oyo North Senatorial District
| death_date = April 2020
| occupation = Politician
}}
'''Robert Koleoso''' bụ onye ndọrọ ndọrọ ọchịchị na onye omeiwu Naịjirịa. Ọ jere ozi dịka onye omeiwu, na-anọchite anya ya [[Ȯra Ọyọ|Oyo]] Mpaghara Sineti Ugwu site na 2003 ruo 2007 na Mgbakọ Mba nke Ise. Ọ nwụrụ n'ọnwa Eprel afọ 2020.<ref>{{Cite news|date=2020-04-10|title=Former Oyo Senator, Robert Koleoso Dies – Independent Newspaper Nigeria|url=https://independent.ng/former-oyo-senator-robert-koleoso-dies/|accessdate=2025-01-17|language=en-GB|work=[[Independent (Nigeria)|Independent]]}}</ref><ref>{{Cite news|title=Ex-Oyo Senator, Robert Koleoso, is dead|url=https://www.premiumtimesng.com/regional/ssouth-west/387026-ex-oyo-senator-robert-koleoso-is-dead.html|accessdate=2025-01-18|work=[[Premium Times]]}}</ref><ref>{{Cite news|author=Grace|first=Ihesiulo|date=2020-04-09|title=Ex-Oyo Senator, Koleoso, dies|url=https://dailytimesng.com/ex-oyo-senator-koleoso-dies/|accessdate=2025-01-17|work=[[Daily Times (Nigeria)|Daily Times]]|language=en-GB}}</ref>
== Edensịbịa ==
<templatestyles src="Reflist/styles.css" />{{Reflist}}{{DEFAULTSORT:Koleoso, Robert}}
q6ceipszq87k80g5zpz8v3r073mfmnj
Bahr Salamat
0
77150
670509
2026-06-30T11:43:41Z
Adimora chidinma
15845
Ekere na itugharị ihụakwụkwọ nke a "[[:en:Special:Redirect/revision/1282931762|Bahr Salamat]]"
670509
wikitext
text/x-wiki
'''Bahr Salamat''' bụ osimiri na-agbanwe agbanwe na [[Chad]].Ọ na-asọga n'ebe ndịda, ọ bụkwa otu n'ime mmiri mmiri nke Osimiri Chari.
Mgbe osimiri Bahr Salama na-asọ, ọ na-aiman na Bahr Salamat Faunal Reserve nke Chad. Osimiri Chari bụ isi iyi mmiri nke Ọdọ Mmiri Chad.<ref>{{Cite news|title=Chari River {{!}} river, Africa|url=https://www.britannica.com/place/Chari-River|accessdate=2025-03-29|work=Encyclopedia Britannica|language=en}}</ref>
== Hụkwa ==
* Isiokwu Osimiri Chari
== Edensibịa ==
{{Reflist}}
bzkvgsn5fe6xd2niw75cai7nm497lb6
670510
670509
2026-06-30T11:45:17Z
Adimora chidinma
15845
670510
wikitext
text/x-wiki
{{Short description|River in Chad}}
{{Infobox river
| subdivision_type1 = Country
| subdivision_name1 = [[Chad]]
| mouth_coordinates = {{coord|9|27|N|18|06|E|region:TD_type:river_source:GNS-enwiki}}
| extra = {{Designation list
| embed = yes
| designation1 = Ramsar
| designation1_offname = Plaines d'inondation des Bahr Aouk et Salamat
| designation1_date = 1 May 2006
| designation1_number = 1621<ref>{{Cite web|title=Plaines d'inondation des Bahr Aouk et Salamat|website=[[Ramsar Convention|Ramsar]] Sites Information Service|url=https://rsis.ramsar.org/ris/1621|accessdate=25 April 2018}}</ref>}}
}}
'''Bahr Salamat''' bụ osimiri na-agbanwe agbanwe na [[Chad]].Ọ na-asọga n'ebe ndịda, ọ bụkwa otu n'ime mmiri mmiri nke Osimiri Chari.
Mgbe osimiri Bahr Salama na-asọ, ọ na-aiman na Bahr Salamat Faunal Reserve nke Chad. Osimiri Chari bụ isi iyi mmiri nke Ọdọ Mmiri Chad.<ref>{{Cite news|title=Chari River {{!}} river, Africa|url=https://www.britannica.com/place/Chari-River|accessdate=2025-03-29|work=Encyclopedia Britannica|language=en}}</ref>
== Hụkwa ==
* Isiokwu Osimiri Chari
== Edensibịa ==
{{Reflist}}
81b4t9splnk6pyh238fkodflvgh3xek